Renames confirm
This commit is contained in:
parent
72ac721642
commit
6037d9bf40
2 changed files with 3 additions and 3 deletions
|
|
@ -32,7 +32,7 @@
|
|||
ng-click="confirm.accept(index.confirmTx.callback)"
|
||||
class="small m10b round expand"
|
||||
ng-style="{'background-color':index.backgroundColor}" translate>
|
||||
Accept
|
||||
Confirm
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -923,7 +923,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
|||
return;
|
||||
} else {
|
||||
$rootScope.$emit('Local/NeedsConfirmation', txp, function(accept) {
|
||||
if (accept) self.acceptTx(txp);
|
||||
if (accept) self.confirmTx(txp);
|
||||
else self.resetForm();
|
||||
});
|
||||
}
|
||||
|
|
@ -932,7 +932,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
|||
}, 100);
|
||||
};
|
||||
|
||||
this.acceptTx = function(txp) {
|
||||
this.confirmTx = function(txp) {
|
||||
var self = this;
|
||||
txService.prepare(function(err) {
|
||||
if (err) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue