diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-12-03 01:33:25 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-12-03 01:36:06 +0100 |
commit | 8683c93613caa4047c4fd874aefb0b7d35fdc038 (patch) | |
tree | d8cbdab473e9f53119db4590f6543a5f0f8a39f8 /src/wallet-impl/history.ts | |
parent | c33dd75711a39403bd4dd9940caab6d5e6ad2d77 (diff) |
version bump / pending balance tweaks
Diffstat (limited to 'src/wallet-impl/history.ts')
-rw-r--r-- | src/wallet-impl/history.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet-impl/history.ts b/src/wallet-impl/history.ts index f5a4e9d3e..dfc683e6d 100644 --- a/src/wallet-impl/history.ts +++ b/src/wallet-impl/history.ts @@ -61,7 +61,7 @@ export async function getHistory( for (const w of withdrawals) { history.push({ detail: { - withdrawalAmount: w.withdrawalAmount, + withdrawalAmount: w.rawWithdrawalAmount, }, timestamp: w.startTimestamp, type: "withdraw", |