aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core
diff options
context:
space:
mode:
authormonero-project <sempre.amaro@gmail.com>2014-05-28 13:19:24 -0400
committermonero-project <sempre.amaro@gmail.com>2014-05-28 13:19:24 -0400
commit2475ec877fbd7e9d46bf94b3f847cbad062b64db (patch)
tree5e110e349a1f4dccd33867fecbbc4a2c51fc312d /src/cryptonote_core
parentfix typing mismatch (diff)
downloadmonero-2475ec877fbd7e9d46bf94b3f847cbad062b64db.tar.xz
typo in tx_pool.cpp
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r--src/cryptonote_core/tx_pool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp
index 294cfc254..4c4c6aea1 100644
--- a/src/cryptonote_core/tx_pool.cpp
+++ b/src/cryptonote_core/tx_pool.cpp
@@ -363,7 +363,7 @@ namespace cryptonote
std::unordered_set<crypto::key_image> k_images;
// Tx size limit as in wallet2.h
- // tx_pool.cpp uses uint64_t for tx sizes, whereas
+ // tx_pool.cpp uses size_t for tx sizes, whereas
// wallet2.h uses uint64_t; just use size_t here
// for now
size_t upper_transaction_size_limit = ((CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE * 125) / 100) - CRYPTONOTE_COINBASE_BLOB_RESERVED_SIZE;