diff options
author | Pierre Boyer <pierre.s.boyer@gmail.com> | 2016-12-04 14:13:54 +0100 |
---|---|---|
committer | Pierre Boyer <pierre.s.boyer@gmail.com> | 2016-12-04 14:13:54 +0100 |
commit | f4772bae812cdab9cca3864d79cdbec7abe5a114 (patch) | |
tree | 434455673de9c67c5ed71c4d37a936610012df56 /src/cryptonote_core/tx_pool.cpp | |
parent | Merge pull request #1372 (diff) | |
download | monero-f4772bae812cdab9cca3864d79cdbec7abe5a114.tar.xz |
Fix a few minor typos
Diffstat (limited to 'src/cryptonote_core/tx_pool.cpp')
-rw-r--r-- | src/cryptonote_core/tx_pool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index e72a592ca..4cfd61f9f 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -205,7 +205,7 @@ namespace cryptonote { //update transactions container auto txd_p = m_transactions.insert(transactions_container::value_type(id, txd)); - CHECK_AND_ASSERT_MES(txd_p.second, false, "intrnal error: transaction already exists at inserting in memorypool"); + CHECK_AND_ASSERT_MES(txd_p.second, false, "internal error: transaction already exists at inserting in memorypool"); txd_p.first->second.blob_size = blob_size; txd_p.first->second.kept_by_block = kept_by_block; txd_p.first->second.fee = fee; |