Merge pull request #5850
c4da1a2
wallet2: fix unset_ring tx retrieval checks (moneromooo-monero)
This commit is contained in:
commit
19ef2e99ad
|
@ -7258,9 +7258,7 @@ bool wallet2::unset_ring(const crypto::hash &txid)
|
|||
bool ok = invoke_http_json("/gettransactions", req, res, rpc_timeout);
|
||||
m_daemon_rpc_mutex.unlock();
|
||||
THROW_WALLET_EXCEPTION_IF(!ok, error::wallet_internal_error, "Failed to get transaction from daemon");
|
||||
if (res.txs.empty())
|
||||
return false;
|
||||
THROW_WALLET_EXCEPTION_IF(res.txs.size(), error::wallet_internal_error, "Failed to get transaction from daemon");
|
||||
THROW_WALLET_EXCEPTION_IF(res.txs.size() != 1, error::wallet_internal_error, "Failed to get transaction from daemon");
|
||||
|
||||
cryptonote::transaction tx;
|
||||
crypto::hash tx_hash;
|
||||
|
|
Loading…
Reference in New Issue