Fix /submit_raw_tx_response status (currently outputs 'bool') (#162)

This commit is contained in:
Lee *!* Clagett
2025-06-06 19:28:59 -04:00
committed by Lee *!* Clagett
parent 95848bd75f
commit cf407344e1

View File

@@ -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);