diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-12-12 13:44:50 -0600 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-12-12 13:44:50 -0600 |
commit | fb64463c4c49a92ab1345eab1a2b2c9bcf0b6708 (patch) | |
tree | 1275d12dd08fab122162bb96b6b59da248e0ce99 /src | |
parent | Merge pull request #6049 (diff) | |
parent | tx_pool: fix error message assuming incorrectly (diff) | |
download | monero-fb64463c4c49a92ab1345eab1a2b2c9bcf0b6708.tar.xz |
Merge pull request #6052
c96b7ee tx_pool: fix error message assuming incorrectly (moneromooo-monero)
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 815b03335..1bc475879 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -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; |