From f827dca8d12aa7a48e8b3fc9ce6b860dc45e7b27 Mon Sep 17 00:00:00 2001 From: Lee *!* Clagett Date: Sun, 25 Jun 2023 13:48:13 -0400 Subject: [PATCH] Add fee to get_address_txs (#74) --- src/rpc/light_wallet.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rpc/light_wallet.cpp b/src/rpc/light_wallet.cpp index aa49b63..64cd0dc 100644 --- a/src/rpc/light_wallet.cpp +++ b/src/rpc/light_wallet.cpp @@ -245,6 +245,7 @@ namespace lws wire::field("timestamp", iso_timestamp(self.value().info.timestamp)), wire::field("total_received", safe_uint64(self.value().info.spend_meta.amount)), wire::field("total_sent", safe_uint64(self.value().spent)), + wire::field("fee", safe_uint64(self.value().info.fee)), wire::field("unlock_time", self.value().info.unlock_time), wire::field("height", self.value().info.link.height), wire::optional_field("payment_id", payment_id),