From f600e6675e4141b5636eed42fe81ae5935a7bbf6 Mon Sep 17 00:00:00 2001 From: tivalue Date: Sun, 18 Aug 2019 00:55:44 -0700 Subject: [PATCH] modify allowContractTransactionAfterHeight for TESTNET --- .../scala/com/wavesplatform/settings/BlockchainSettings.scala | 2 +- .../settings/BlockchainSettingsSpecification.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/scala/com/wavesplatform/settings/BlockchainSettings.scala b/src/main/scala/com/wavesplatform/settings/BlockchainSettings.scala index b45f32935..eba7ad834 100644 --- a/src/main/scala/com/wavesplatform/settings/BlockchainSettings.scala +++ b/src/main/scala/com/wavesplatform/settings/BlockchainSettings.scala @@ -26,7 +26,7 @@ object FunctionalitySettings { mintingSpeed = 1, //TODO //set the value - allowContractTransactionAfterHeight = 423600) + allowContractTransactionAfterHeight = 430000) val configPath = "vsys.blockchain.custom.functionality" } diff --git a/src/test/scala/com/wavesplatform/settings/BlockchainSettingsSpecification.scala b/src/test/scala/com/wavesplatform/settings/BlockchainSettingsSpecification.scala index 4035e6a17..feae7a60f 100644 --- a/src/test/scala/com/wavesplatform/settings/BlockchainSettingsSpecification.scala +++ b/src/test/scala/com/wavesplatform/settings/BlockchainSettingsSpecification.scala @@ -95,7 +95,7 @@ class BlockchainSettingsSpecification extends FlatSpec with Matchers { settings.addressSchemeCharacter should be('T') settings.functionalitySettings.numOfSlots should be (60) settings.functionalitySettings.mintingSpeed should be (1) - settings.functionalitySettings.allowContractTransactionAfterHeight should be (423600) // same as the setting + settings.functionalitySettings.allowContractTransactionAfterHeight should be (430000) // same as the setting settings.genesisSettings.blockTimestamp should be(1535356447650226656L) settings.genesisSettings.timestamp should be(1535356447650226656L) settings.genesisSettings.averageBlockDelay should be(60.seconds)