diff options
author | Florian Dold <florian@dold.me> | 2022-03-28 16:11:58 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-03-28 16:11:58 +0200 |
commit | 2ba6692c6ad97285e852fb0b74a650e067817003 (patch) | |
tree | 2018071064c002f63aaed1928a0e0483830c6494 /packages/taler-util | |
parent | e89821a6c7f5b740ab5781354149dd2cc2b4047c (diff) |
fix fee discrepancy
The withdrawal call-to-action and withdrawal transaction details dialog
showed different fees, as the "overhead" for unwithdrawable amounts in a
reserve was not included in the withdrawal CTA.
The withdrawal CTA now shows the same fees as the transaction details.
Diffstat (limited to 'packages/taler-util')
-rw-r--r-- | packages/taler-util/src/walletTypes.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/taler-util/src/walletTypes.ts b/packages/taler-util/src/walletTypes.ts index 1f88c39ee..552087fb8 100644 --- a/packages/taler-util/src/walletTypes.ts +++ b/packages/taler-util/src/walletTypes.ts @@ -1133,3 +1133,7 @@ export const codecForImportDbRequest = (): Codec<ImportDb> => buildCodecForObject<ImportDb>() .property("dump", codecForAny()) .build("ImportDbRequest"); + + + +
\ No newline at end of file |