diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-29 10:43:31 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-29 10:43:59 +0000 |
commit | c96b7ee61910ab64e0e0cbd978addfe2ea3e4b27 (patch) | |
tree | ffc2f9c83e7ee837307762a3b5f0d4c6797efd37 /src | |
parent | Merge pull request #6044 (diff) | |
download | monero-c96b7ee61910ab64e0e0cbd978addfe2ea3e4b27.tar.xz |
tx_pool: fix error message assuming incorrectly
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/tx_pool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index 392e611e9..25b100563 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -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; |