diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-12-05 22:17:01 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-12-05 22:17:01 +0100 |
commit | 8115ac660cd9d12ef69ca80fc2e4cf8eec6b1ba1 (patch) | |
tree | 1190c1e16fb620d7812b1f26b03f20ed9615e795 /src/wallet-impl/withdraw.ts | |
parent | f67d7f54f9d0fed97446898942e3dfee67ee2985 (diff) |
fix refunds
Diffstat (limited to 'src/wallet-impl/withdraw.ts')
-rw-r--r-- | src/wallet-impl/withdraw.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet-impl/withdraw.ts b/src/wallet-impl/withdraw.ts index 7b7d0f640..3122a463c 100644 --- a/src/wallet-impl/withdraw.ts +++ b/src/wallet-impl/withdraw.ts @@ -282,6 +282,7 @@ async function processPlanchet( } if (numDone === ws.denoms.length) { ws.finishTimestamp = getTimestampNow(); + ws.lastError = undefined; ws.retryInfo = initRetryInfo(false); withdrawSessionFinished = true; } |