tx_pool: fix error message assuming incorrectly

pull/235/head
moneromooo-monero 5 years ago
parent 4c9fd8d86d
commit c96b7ee619
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -264,7 +264,7 @@ namespace cryptonote
}
catch (const std::exception &e)
{
MERROR("transaction already exists at inserting in memory pool: " << e.what());
MERROR("Error adding transaction to txpool: " << e.what());
return false;
}
tvc.m_verifivation_impossible = true;
@ -310,7 +310,7 @@ namespace cryptonote
}
catch (const std::exception &e)
{
MERROR("internal error: transaction already exists at inserting in memory pool: " << e.what());
MERROR("internal error: error adding transaction to txpool: " << e.what());
return false;
}
tvc.m_added_to_pool = true;

Loading…
Cancel
Save