rpc: fix relay_tx error return mixup
This commit is contained in:
parent
77a008f714
commit
6e4a55ba7e
|
@ -2778,7 +2778,7 @@ namespace cryptonote
|
||||||
crypto::hash txid = *reinterpret_cast<const crypto::hash*>(txid_data.data());
|
crypto::hash txid = *reinterpret_cast<const crypto::hash*>(txid_data.data());
|
||||||
|
|
||||||
cryptonote::blobdata txblob;
|
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;
|
NOTIFY_NEW_TRANSACTIONS::request r;
|
||||||
r.txs.push_back(std::move(txblob));
|
r.txs.push_back(std::move(txblob));
|
||||||
|
|
Loading…
Reference in New Issue