Alert for transaction support in navbar (red label).
Fixes Sign and Reject Transactions. Known bugs: * After 5 continuous transactions, connection is lost with peers * 1-of-1 wallet does not refresh automatically
This commit is contained in:
parent
cb00a5b629
commit
8a03225cd2
4 changed files with 18 additions and 9 deletions
|
|
@ -346,7 +346,7 @@ Wallet.prototype.reject = function(ntxid) {
|
|||
txp.rejectedBy[myId] = Date.now();
|
||||
this.sendTxProposals();
|
||||
this.store();
|
||||
this.emit('refresh');
|
||||
this.emit('txProposalsUpdated');
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -367,7 +367,7 @@ Wallet.prototype.sign = function(ntxid) {
|
|||
txp.signedBy[myId] = Date.now();
|
||||
this.sendTxProposals();
|
||||
this.store();
|
||||
this.emit('refresh');
|
||||
this.emit('txProposalsUpdated');
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue