aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-12-12 13:44:50 -0600
committerluigi1111 <luigi1111w@gmail.com>2019-12-12 13:44:50 -0600
commitfb64463c4c49a92ab1345eab1a2b2c9bcf0b6708 (patch)
tree1275d12dd08fab122162bb96b6b59da248e0ce99
parentMerge pull request #6049 (diff)
parenttx_pool: fix error message assuming incorrectly (diff)
downloadmonero-fb64463c4c49a92ab1345eab1a2b2c9bcf0b6708.tar.xz
Merge pull request #6052
c96b7ee tx_pool: fix error message assuming incorrectly (moneromooo-monero)
-rw-r--r--src/cryptonote_core/tx_pool.cpp4
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;