Merge pull request #10435

3703ec1 wallet_rpc_server: restrict relay_tx (selsta)
This commit is contained in:
tobtoht
2026-04-22 17:35:06 +00:00
+7
View File
@@ -1901,6 +1901,13 @@ namespace tools
//------------------------------------------------------------------------------------------------------------------------------
bool wallet_rpc_server::on_relay_tx(const wallet_rpc::COMMAND_RPC_RELAY_TX::request& req, wallet_rpc::COMMAND_RPC_RELAY_TX::response& res, epee::json_rpc::error& er, const connection_context *ctx)
{
if (m_restricted)
{
er.code = WALLET_RPC_ERROR_CODE_DENIED;
er.message = "Command unavailable in restricted mode.";
return false;
}
if (!m_wallet) return not_open(er);
cryptonote::blobdata blob;