taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 0fb97908d9f88410661f03b6bc773377ae478f4e
parent 02507a87fde4d3ef0a4c1a2bac20091aaf693a2b
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 11 Feb 2020 15:32:47 +0100

clarify these are arrays

Diffstat:
Mcore/api-wire.rst | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 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.