Merge pull request #10624

f1ae8ca wallet_rpc_server: add missing background check (selsta)
This commit is contained in:
tobtoht
2026-05-28 14:02:47 +00:00
+1
View File
@@ -2787,6 +2787,7 @@ namespace tools
bool wallet_rpc_server::on_get_spend_proof(const wallet_rpc::COMMAND_RPC_GET_SPEND_PROOF::request& req, wallet_rpc::COMMAND_RPC_GET_SPEND_PROOF::response& res, epee::json_rpc::error& er, const connection_context *ctx)
{
if (!m_wallet) return not_open(er);
CHECK_IF_BACKGROUND_SYNCING();
crypto::hash txid;
if (!epee::string_tools::hex_to_pod(req.txid, txid))