From 8496058b6d3f3e0d161f42c86ea83234de3a9c61 Mon Sep 17 00:00:00 2001 From: MoneroOcean Date: Sun, 25 Mar 2018 01:43:37 +0100 Subject: [PATCH] Disabled tx ver check --- src/cryptonote_core/cryptonote_basic.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cryptonote_core/cryptonote_basic.h b/src/cryptonote_core/cryptonote_basic.h index 881b227..41b3a9e 100644 --- a/src/cryptonote_core/cryptonote_basic.h +++ b/src/cryptonote_core/cryptonote_basic.h @@ -174,10 +174,10 @@ namespace cryptonote BEGIN_SERIALIZE() VARINT_FIELD(version) - if(MAX_TRANSACTION_VERSION < version) { - printf("!!! Current tx version %u exceeds %u max", version, MAX_TRANSACTION_VERSION); - return false; - } + //if(MAX_TRANSACTION_VERSION < version) { + // printf("!!! Current tx version %zu exceeds %zu max", version, MAX_TRANSACTION_VERSION); + // return false; + //} VARINT_FIELD(unlock_time) FIELD(vin) FIELD(vout)