Merge pull request #6052

c96b7ee tx_pool: fix error message assuming incorrectly (moneromooo-monero)
release-0.8.0.2
luigi1111 5 years ago
commit fb64463c4c
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -266,7 +266,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;
@ -312,7 +312,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