Wallet/src/js/controllers/confirmTx.js

13 lines
217 B
JavaScript
Raw Normal View History

'use strict';
angular.module('copayApp.controllers').controller('confirmTxController', function() {
this.close = function(cb) {
return cb();
};
this.accept = function(cb) {
return cb(true);
};
});