summaryrefslogtreecommitdiff
path: root/taler-wallet.rst
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-05-15 09:36:47 -0300
committerTorsten Grote <t@grobox.de>2020-05-15 09:36:47 -0300
commit0f050670c8f0f6a4e4afc74c4f966f455dbdebc6 (patch)
treecf0dd3a163ea52e0ee75da3f6b861ccc6404d393 /taler-wallet.rst
parent367a3c9f53d673fdacd3c978245292b13375adf6 (diff)
downloaddocs-0f050670c8f0f6a4e4afc74c4f966f455dbdebc6.tar.gz
docs-0f050670c8f0f6a4e4afc74c4f966f455dbdebc6.tar.bz2
docs-0f050670c8f0f6a4e4afc74c4f966f455dbdebc6.zip
Clarify hiding internal refreshes from user-facing balance
Diffstat (limited to 'taler-wallet.rst')
-rw-r--r--taler-wallet.rst10
1 files changed, 7 insertions, 3 deletions
diff --git a/taler-wallet.rst b/taler-wallet.rst
index 1c27d827..7d0e98a6 100644
--- a/taler-wallet.rst
+++ b/taler-wallet.rst
@@ -102,21 +102,25 @@ Balances are the amounts of digital cash held by the wallet.
interface Balance {
currency?: string;
- // the total Amount that is currently available to be spent
+ // The total Amount that is currently available to be spent
+ // excluding amounts tied up in ongoing refresh operations. These are hidden from the user.
+ // If the user tries to spend coins locked up this way,
+ // the wallet will give an error message different from "insufficient balance".
available: Amount;
// the total incoming amount that will be added to the available balance
- // when all pending transactions succeed
+ // when all pending transactions succeed (excluding internal refreshes)
pendingIncoming: Amount;
// the total outgoing amount that will be subtracted from the available balance
- // when all pending transactions succeed
+ // when all pending transactions succeed (excluding internal refreshes)
pendingOutgoing: Amount;
// true if the balance has pending transactions
hasPendingTransactions: boolean;
// true if the balance requires user-interaction, e.g. accepting a tip
+ // (DEV: can be left out of a first implementation)
requiresUserInput: boolean;
}