Merge pull request #485 from status-im/fix_testnet_config

fix testnet config, disable 'daoForkSupport' for 'Ropsten' and 'Rinkeby'
This commit is contained in:
andri lim 2020-04-09 10:53:22 +07:00 committed by GitHub
commit 03eb7a3c2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -209,7 +209,7 @@ proc publicChainConfig*(id: PublicNetwork): ChainConfig =
ChainConfig(
chainId: RopstenNet.uint,
homesteadBlock: 0.toBlockNumber,
daoForkSupport: true,
daoForkSupport: false,
eip150Block: 0.toBlockNumber,
eip150Hash: toDigest("41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d"),
eip155Block: 10.toBlockNumber,
@ -220,7 +220,7 @@ proc publicChainConfig*(id: PublicNetwork): ChainConfig =
ChainConfig(
chainId: RinkebyNet.uint,
homesteadBlock: 1.toBlockNumber,
daoForkSupport: true,
daoForkSupport: false,
eip150Block: 2.toBlockNumber,
eip150Hash: toDigest("9b095b36c15eaf13044373aef8ee0bd3a382a5abb92e402afa44b8249c3a90e9"),
eip155Block: 3.toBlockNumber,