From b1ce78c8d164e185f4c6c20dfc9e944e7d81778f Mon Sep 17 00:00:00 2001 From: Prasanna Loganathar Date: Thu, 15 Sep 2022 17:35:45 +0530 Subject: [PATCH] Push up testnet ICX enable block (#1475) --- src/masternodes/mn_checks.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/masternodes/mn_checks.cpp b/src/masternodes/mn_checks.cpp index e0c6645946..bdd27c3b0a 100644 --- a/src/masternodes/mn_checks.cpp +++ b/src/masternodes/mn_checks.cpp @@ -3738,10 +3738,10 @@ bool IsDisabledTx(uint32_t height, CustomTxType type, const Consensus::Params& c // ICXCloseOrder = '6', // ICXCloseOffer = '7', - // Leaving close orders, as withdrawal of existing should be ok? // disable ICX orders for all networks other than testnet - if (Params().NetworkIDString() == CBaseChainParams::TESTNET && static_cast(height) >= 1248000) return false; - + if (Params().NetworkIDString() == CBaseChainParams::TESTNET && static_cast(height) >= 1250000) return false; + + // Leaving close orders, as withdrawal of existing should be ok switch (type) { case CustomTxType::ICXCreateOrder: case CustomTxType::ICXMakeOffer: