From cf407344e1ea3eccdf44048b14f360b39b53b18c Mon Sep 17 00:00:00 2001 From: Lee *!* Clagett Date: Fri, 6 Jun 2025 19:28:59 -0400 Subject: [PATCH] Fix /submit_raw_tx_response status (currently outputs 'bool') (#162) --- src/rpc/light_wallet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/light_wallet.h b/src/rpc/light_wallet.h index 802e837..192d836 100644 --- a/src/rpc/light_wallet.h +++ b/src/rpc/light_wallet.h @@ -275,7 +275,7 @@ namespace rpc struct submit_raw_tx_response { submit_raw_tx_response() = delete; - const char* status; + std::string status; }; void write_bytes(wire::json_writer&, submit_raw_tx_response);