diff options
author | iamsmooth <email@notused> | 2014-09-13 08:04:05 +0000 |
---|---|---|
committer | iamsmooth <email@notused> | 2014-09-13 08:04:05 +0000 |
commit | bb2b606e91df625aeb03e311f44827b9250ea667 (patch) | |
tree | afef98238c15c00d750b73f1961b71b24d9c819c | |
parent | Change wallet to not try to extract tx public key when tx has no outputs (fix... (diff) | |
download | monero-bb2b606e91df625aeb03e311f44827b9250ea667.tar.xz |
fix incorrect error message (obvious cut and paste bug from upstream)
-rw-r--r-- | src/cryptonote_core/cryptonote_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index 9643824bc..637b8fea6 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -257,7 +257,7 @@ namespace cryptonote //check if tx use different key images if(!check_tx_inputs_keyimages_diff(tx)) { - LOG_PRINT_RED_L1("tx is too large " << get_object_blobsize(tx) << ", expected not bigger than " << m_blockchain_storage.get_current_comulative_blocksize_limit() - CRYPTONOTE_COINBASE_BLOB_RESERVED_SIZE); + LOG_PRINT_RED_L1("tx uses a single key image more than once"); return false; } |