mirror of
https://codeberg.org/nahuhh/wownero
synced 2026-03-05 06:07:35 -05:00
tx_pool: fix error message assuming incorrectly
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user