Merge pull request #3811 from cmgustavo/bug/accept-proposal-encrypted-wallet
Show popup before the spinner on mobile
This commit is contained in:
commit
765ce5488c
1 changed files with 1 additions and 1 deletions
|
|
@ -175,12 +175,12 @@ angular.module('copayApp.services').factory('txSignService', function($rootScope
|
||||||
};
|
};
|
||||||
|
|
||||||
root.prepareAndSignAndBroadcast = function(txp, opts, cb) {
|
root.prepareAndSignAndBroadcast = function(txp, opts, cb) {
|
||||||
reportSigningStatus(opts);
|
|
||||||
root.prepare(function(err) {
|
root.prepare(function(err) {
|
||||||
if (err) {
|
if (err) {
|
||||||
stopReport(opts);
|
stopReport(opts);
|
||||||
return cb(err);
|
return cb(err);
|
||||||
};
|
};
|
||||||
|
reportSigningStatus(opts);
|
||||||
root.signAndBroadcast(txp, opts, function(err, txp) {
|
root.signAndBroadcast(txp, opts, function(err, txp) {
|
||||||
if (err) {
|
if (err) {
|
||||||
stopReport(opts);
|
stopReport(opts);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue