Fix typo
This commit is contained in:
parent
df09e07ded
commit
90fba0de7a
2 changed files with 2 additions and 2 deletions
|
|
@ -1451,7 +1451,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
self.setTab(tab, reset);
|
self.setTab(tab, reset);
|
||||||
});
|
});
|
||||||
|
|
||||||
$rootScope.$on('Local/NeedConfirmation', function(event, txp, cb) {
|
$rootScope.$on('Local/NeedsConfirmation', function(event, txp, cb) {
|
||||||
self.confirmTx = {
|
self.confirmTx = {
|
||||||
txp : txFormatService.processTx(txp),
|
txp : txFormatService.processTx(txp),
|
||||||
callback: function(accept) {
|
callback: function(accept) {
|
||||||
|
|
|
||||||
|
|
@ -833,7 +833,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
$rootScope.$emit('Local/NeedConfirmation', txp, function(accept) {
|
$rootScope.$emit('Local/NeedsConfirmation', txp, function(accept) {
|
||||||
if (accept) self.acceptTx(txp);
|
if (accept) self.acceptTx(txp);
|
||||||
else self.resetForm();
|
else self.resetForm();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue