mirror of
https://github.com/monero-project/monero.git
synced 2025-01-14 00:09:29 -05:00
rpc: fix relay_tx error return mixup
This commit is contained in:
parent
25419b4bfb
commit
e3068346ee
@ -2816,7 +2816,7 @@ namespace cryptonote
|
||||
crypto::hash txid = *reinterpret_cast<const crypto::hash*>(txid_data.data());
|
||||
|
||||
cryptonote::blobdata txblob;
|
||||
if (!m_core.get_pool_transaction(txid, txblob, relay_category::legacy))
|
||||
if (m_core.get_pool_transaction(txid, txblob, relay_category::legacy))
|
||||
{
|
||||
NOTIFY_NEW_TRANSACTIONS::request r;
|
||||
r.txs.push_back(std::move(txblob));
|
||||
|
Loading…
Reference in New Issue
Block a user