forked from such-gitea/wownero
rpc: fix relay_tx error return mixup
This commit is contained in:
committed by
wowario
parent
6c652ef1ad
commit
da1720ec30
@@ -2817,7 +2817,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));
|
||||
|
||||
Reference in New Issue
Block a user