rpc: fix relay_tx error return mixup

This commit is contained in:
moneromooo-monero
2020-05-28 11:32:47 +00:00
committed by wowario
parent 6c652ef1ad
commit da1720ec30

View File

@@ -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));