summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-02-11 15:32:47 +0100
committerChristian Grothoff <christian@grothoff.org>2020-02-11 15:32:47 +0100
commit0fb97908d9f88410661f03b6bc773377ae478f4e (patch)
tree1b887a80a5b92f0af650f37b12c5ff5200395c56 /core
parent02507a87fde4d3ef0a4c1a2bac20091aaf693a2b (diff)
downloaddocs-0fb97908d9f88410661f03b6bc773377ae478f4e.tar.gz
docs-0fb97908d9f88410661f03b6bc773377ae478f4e.tar.bz2
docs-0fb97908d9f88410661f03b6bc773377ae478f4e.zip
clarify these are arrays
Diffstat (limited to 'core')
-rw-r--r--core/api-wire.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/api-wire.rst b/core/api-wire.rst
index 1078a2d4..537c6461 100644
--- a/core/api-wire.rst
+++ b/core/api-wire.rst
@@ -160,8 +160,8 @@ Querying the transaction history
interface IncomingHistory {
- // The incoming transactions
- incoming_transactions : IncomingBankTransaction;
+ // Array of incoming transactions
+ incoming_transactions : IncomingBankTransaction[];
// Sum of all incoming transactions (ever) after the most
// recent transaction reported in the history.
@@ -255,8 +255,8 @@ Querying the transaction history
interface OutgoingHistory {
- // The outgoing transactions
- outgoing_transactions : OutgoingBankTransaction;
+ // Array of outgoing transactions
+ outgoing_transactions : OutgoingBankTransaction[];
// Sum of all outgoing transactions (ever) after the most
// recent transaction reported in the history.