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/cryptonote_core/tx_pool.cpp | |
| parent | e629db18f49c3762fb2398459fcb55ab0fb4d830 (diff) | |
| parent | c96b7ee61910ab64e0e0cbd978addfe2ea3e4b27 (diff) | |
| download | monzero-core-fb64463c4c49a92ab1345eab1a2b2c9bcf0b6708.tar.gz monzero-core-fb64463c4c49a92ab1345eab1a2b2c9bcf0b6708.tar.xz monzero-core-fb64463c4c49a92ab1345eab1a2b2c9bcf0b6708.zip | |
Merge pull request #6052
c96b7ee tx_pool: fix error message assuming incorrectly (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/tx_pool.cpp')
| -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; |
