clean send flow state when transaction sent
This commit is contained in:
parent
c715fdcb41
commit
8322453edf
1 changed files with 4 additions and 0 deletions
|
|
@ -766,8 +766,12 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
||||||
((processName === 'signingTx') && vm.originWallet.m > 1) ||
|
((processName === 'signingTx') && vm.originWallet.m > 1) ||
|
||||||
(processName == 'sendingTx' && !vm.originWallet.canSign() && !vm.originWallet.isPrivKeyExternal())
|
(processName == 'sendingTx' && !vm.originWallet.canSign() && !vm.originWallet.isPrivKeyExternal())
|
||||||
) && !isOn) {
|
) && !isOn) {
|
||||||
|
// Show the popup
|
||||||
vm.sendStatus = 'success';
|
vm.sendStatus = 'success';
|
||||||
|
|
||||||
|
// Clear the send flow service state
|
||||||
|
sendFlowService.state.clear();
|
||||||
|
|
||||||
if ($state.current.name === "tabs.send.review") { // XX SP: Otherwise all open wallets on other devices play this sound if you have been in a send flow before on that device.
|
if ($state.current.name === "tabs.send.review") { // XX SP: Otherwise all open wallets on other devices play this sound if you have been in a send flow before on that device.
|
||||||
soundService.play('misc/payment_sent.mp3');
|
soundService.play('misc/payment_sent.mp3');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue