diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-12-06 11:01:39 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-12-06 11:01:39 +0100 |
commit | 52da599ddbf5a72115544bc230cdefdb12811fd1 (patch) | |
tree | abd90966659b0c60b8020643e2828bd913ad3db0 /src/wallet-impl/reserves.ts | |
parent | e01f94e345bd94afe1643b55434a00c106d18954 (diff) |
don't die on auto-refund, fix pending operations
Diffstat (limited to 'src/wallet-impl/reserves.ts')
-rw-r--r-- | src/wallet-impl/reserves.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet-impl/reserves.ts b/src/wallet-impl/reserves.ts index 8b8fbc7e3..d6568bd30 100644 --- a/src/wallet-impl/reserves.ts +++ b/src/wallet-impl/reserves.ts @@ -326,6 +326,7 @@ async function processReserveBankStatusImpl( r.bankWithdrawConfirmUrl = status.confirm_transfer_url; return r; }); + await incrementReserveRetry(ws, reservePub, undefined); } ws.notify( { type: NotificationType.Wildcard }); } |