aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/cryptonote_core.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2014-09-13 10:22:13 +0200
committerRiccardo Spagni <ric@spagni.net>2014-09-13 10:24:39 +0200
commit9c56b38b16059f654280ee59614b645fbdfa0e7e (patch)
tree8ce892e47b9e80cf72411c5bad4f343d299c5e14 /src/cryptonote_core/cryptonote_core.cpp
parent63f60b17779ef9f2ff8939bf69eab4173d81191f (diff)
parentbb2b606e91df625aeb03e311f44827b9250ea667 (diff)
downloadmonzero-core-9c56b38b16059f654280ee59614b645fbdfa0e7e.tar.gz
monzero-core-9c56b38b16059f654280ee59614b645fbdfa0e7e.tar.xz
monzero-core-9c56b38b16059f654280ee59614b645fbdfa0e7e.zip
Merge pull request #136
bb2b606 fix incorrect error message (obvious cut and paste bug from upstream) (iamsmooth) 6b77e83 Change wallet to not try to extract tx public key when tx has no outputs (fixes 202612 tx format messages and is otherwise correct) (iamsmooth) 08205f0 output rng fix from boolberry (iamsmooth)
Diffstat (limited to 'src/cryptonote_core/cryptonote_core.cpp')
-rw-r--r--src/cryptonote_core/cryptonote_core.cpp2
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;
}