From bade41be866034226a7ae1850c294e1dbf61bf7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Tue, 11 Jul 2017 14:33:50 -0300 Subject: [PATCH] typo fix --- src/js/controllers/confirm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/controllers/confirm.js b/src/js/controllers/confirm.js index 86819abd1..d475a4364 100644 --- a/src/js/controllers/confirm.js +++ b/src/js/controllers/confirm.js @@ -109,7 +109,7 @@ angular.module('copayApp.controllers').controller('confirmController', function( return cb('Could not update any wallet'); if (lodash.isEmpty(filteredWallets)) { - setNoWallet(gettextCatalog.getString('Insufficent funds')); + setNoWallet(gettextCatalog.getString('Insufficient funds')); } $scope.wallets = lodash.clone(filteredWallets); return cb(); @@ -272,7 +272,7 @@ angular.module('copayApp.controllers').controller('confirmController', function( $log.debug('Send max info', sendMaxInfo); if (tx.sendMax && sendMaxInfo.amount == 0) { - setNoWallet(gettextCatalog.getString('Insufficent funds')); + setNoWallet(gettextCatalog.getString('Insufficient funds')); popupService.showAlert(gettextCatalog.getString('Error'), gettextCatalog.getString('Not enough funds for fee')); return cb('no_funds'); }