Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #6052
c96b7ee tx_pool: fix error message assuming incorrectly (moneromooo-monero)
  • Loading branch information
luigi1111 committed Dec 12, 2019
2 parents e629db1 + c96b7ee commit fb64463
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cryptonote_core/tx_pool.cpp
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit fb64463

Please sign in to comment.