From 4ef46c2e8b879e8fdd8a3d3b357235bfc39ab0ca Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Mon, 5 Aug 2019 20:56:15 +0200 Subject: [PATCH] first attempt to hard fork testnet --- src/currency_core/blockchain_storage.cpp | 2 +- src/currency_core/currency_config.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/currency_core/blockchain_storage.cpp b/src/currency_core/blockchain_storage.cpp index d0cc3d57..2c064da2 100644 --- a/src/currency_core/blockchain_storage.cpp +++ b/src/currency_core/blockchain_storage.cpp @@ -4654,7 +4654,7 @@ bool blockchain_storage::handle_block_to_main_chain(const block& bl, const crypt if (is_pos_bl) { bool r = validate_pos_block(bl, current_diffic, pos_coinstake_amount, this_coin_diff, proof_hash, id, false); - CHECK_AND_ASSERT_MES_CUSTOM(r, false, bvc.m_verification_failed = true, "validate_pos_block failed!!"); + CHECK_AND_ASSERT_MES_CUSTOM(r, false, bvc.m_verification_failed = true, "validate_pos_block failed!!"); } else { diff --git a/src/currency_core/currency_config.h b/src/currency_core/currency_config.h index 6e28fe2c..bf6725c1 100644 --- a/src/currency_core/currency_config.h +++ b/src/currency_core/currency_config.h @@ -215,7 +215,7 @@ #ifndef TESTNET #define ZANO_HARDFORK_1_AFTER_HEIGHT 120000 #else -#define ZANO_HARDFORK_1_AFTER_HEIGHT ??? +#define ZANO_HARDFORK_1_AFTER_HEIGHT 62102 #endif