Merge pull request #6376 from cmgustavo/bug/topup-insufficient-funds

Fix topup a debit card if default wallet has insufficient funds
This commit is contained in:
Javier Donadío 2017-07-07 15:42:32 -03:00 committed by GitHub
commit 3141feef27
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ angular.module('copayApp.controllers').controller('topUpController', function($s
createTx(wallet, invoice, message, function(err, ctxp) {
ongoingProcess.set('loadingTxInfo', false);
if (err) {
showErrorAndBack(err.title, err.message);
showError(err.title, err.message);
return;
}