summaryrefslogtreecommitdiff
path: root/core/api-wire.rst
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-02-11 23:00:44 +0100
committerChristian Grothoff <christian@grothoff.org>2020-02-11 23:00:44 +0100
commit30f02dcb7137d84d1e9d901e20e990af84b5ec2c (patch)
tree649b3dd5ad6fcacd818b2d4d80bb0f0651decbaf /core/api-wire.rst
parent0fb97908d9f88410661f03b6bc773377ae478f4e (diff)
downloaddocs-30f02dcb7137d84d1e9d901e20e990af84b5ec2c.tar.gz
docs-30f02dcb7137d84d1e9d901e20e990af84b5ec2c.tar.bz2
docs-30f02dcb7137d84d1e9d901e20e990af84b5ec2c.zip
let's not do this here
Diffstat (limited to 'core/api-wire.rst')
-rw-r--r--core/api-wire.rst32
1 files changed, 0 insertions, 32 deletions
diff --git a/core/api-wire.rst b/core/api-wire.rst
index 537c6461..ee6a25ec 100644
--- a/core/api-wire.rst
+++ b/core/api-wire.rst
@@ -163,22 +163,6 @@ Querying the transaction history
// Array of incoming transactions
incoming_transactions : IncomingBankTransaction[];
- // Sum of all incoming transactions (ever) after the most
- // recent transaction reported in the history.
- total_incoming_end: Amount;
-
- // Sum of all incoming transactions before the oldest
- // transaction reported in the history.
- total_incoming_start: Amount;
-
- // Total amount that has been outgoing from this account
- // from the beginning of time until now. Note that this
- // number is always the latest value and thus independent
- // of the time region covered by the history. If the
- // history includes the latest incoming transactions, this
- // value can be used to calculate the balance after that
- // latest transaction.
- current_outgoing: Amount;
}
.. ts:def:: IncomingBankTransaction
@@ -258,22 +242,6 @@ Querying the transaction history
// Array of outgoing transactions
outgoing_transactions : OutgoingBankTransaction[];
- // Sum of all outgoing transactions (ever) after the most
- // recent transaction reported in the history.
- total_outgoing_end: Amount;
-
- // Sum of all outgoing transactions before the oldest
- // transaction reported in the history.
- total_outgoing_start: Amount;
-
- // Total amount that has been incoming into this account
- // from the beginning of time until now. Note that this
- // number is always the latest value and thus independent
- // of the time region covered by the history. If the
- // history includes the latest outgoing transactions, this
- // value can be used to calculate the balance after that
- // latest transaction.
- current_incoming: Amount;
}
.. ts:def:: OutgoingBankTransaction