From 199d0b5c4d572c35b30cc403d88e3a932f0c7b41 Mon Sep 17 00:00:00 2001 From: Lee *!* Clagett <vtnerd@users.noreply.github.com> 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),