Merge pull request #3811 from cmgustavo/bug/accept-proposal-encrypted-wallet

Show popup before the spinner on mobile
This commit is contained in:
Matias Alejo Garcia 2016-01-22 15:50:38 -03:00
commit 765ce5488c

View file

@ -175,12 +175,12 @@ angular.module('copayApp.services').factory('txSignService', function($rootScope
};
root.prepareAndSignAndBroadcast = function(txp, opts, cb) {
reportSigningStatus(opts);
root.prepare(function(err) {
if (err) {
stopReport(opts);
return cb(err);
};
reportSigningStatus(opts);
root.signAndBroadcast(txp, opts, function(err, txp) {
if (err) {
stopReport(opts);