diff options
author | Dimitris Apostolou <dimitris.apostolou@icloud.com> | 2018-03-01 13:36:19 +0200 |
---|---|---|
committer | Dimitris Apostolou <rex@MacBook-Pro-2011.local> | 2018-03-15 18:25:38 +0200 |
commit | 57c0b1ed9f15ca27892a8737156c3b8e32a1625e (patch) | |
tree | 8ca78ded5aa561697a8d1fd7827604aa51a5f45f /src/cryptonote_core/tx_pool.cpp | |
parent | Merge pull request #3398 (diff) | |
download | monero-57c0b1ed9f15ca27892a8737156c3b8e32a1625e.tar.xz |
Fix typos in various files
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 762feb5ee..0af9737a7 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -153,7 +153,7 @@ namespace cryptonote uint64_t outputs_amount = get_outs_money_amount(tx); if(outputs_amount > inputs_amount) { - LOG_PRINT_L1("transaction use more money then it has: use " << print_money(outputs_amount) << ", have " << print_money(inputs_amount)); + LOG_PRINT_L1("transaction use more money than it has: use " << print_money(outputs_amount) << ", have " << print_money(inputs_amount)); tvc.m_verifivation_failed = true; tvc.m_overspend = true; return false; @@ -292,7 +292,7 @@ namespace cryptonote } catch (const std::exception &e) { - MERROR("internal error: transaction already exists at inserting in memorypool: " << e.what()); + MERROR("internal error: transaction already exists at inserting in memory pool: " << e.what()); return false; } tvc.m_added_to_pool = true; |