This commit is contained in:
Gustavo Maximiliano Cortez 2016-02-11 14:00:03 -05:00
parent df09e07ded
commit 90fba0de7a
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
2 changed files with 2 additions and 2 deletions

View File

@ -1451,7 +1451,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.setTab(tab, reset);
});
$rootScope.$on('Local/NeedConfirmation', function(event, txp, cb) {
$rootScope.$on('Local/NeedsConfirmation', function(event, txp, cb) {
self.confirmTx = {
txp : txFormatService.processTx(txp),
callback: function(accept) {

View File

@ -833,7 +833,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
});
return;
} else {
$rootScope.$emit('Local/NeedConfirmation', txp, function(accept) {
$rootScope.$emit('Local/NeedsConfirmation', txp, function(accept) {
if (accept) self.acceptTx(txp);
else self.resetForm();
});