commit 45bfeb537164dea4a9793df200cb08e25d432aee
parent 710b19dd32f9196bea3d78b165e2de21b7bf0cbe
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Thu, 5 Oct 2023 21:41:12 +0200
also return current balance and coin denomination
Diffstat:
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
@@ -2568,6 +2568,12 @@ Coin History
.. ts:def:: CoinHistoryResponse
interface CoinHistoryResponse {
+ // Current balance of the coin.
+ balance: Amount;
+
+ // Hash of the coin's denomination.
+ h_denom_pub: HashCode;
+
// Transaction history for the coin.
history: CoinSpendHistoryItem[];
}