Skip to content

Commit

Permalink
Merge pull request #3811 from cmgustavo/bug/accept-proposal-encrypted…
Browse files Browse the repository at this point in the history
…-wallet

Show popup before the spinner on mobile
  • Loading branch information
matiu committed Jan 22, 2016
2 parents c10151d + be223b6 commit 765ce54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/services/txSignService.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 765ce54

Please sign in to comment.