diff options
author | Péter Szilágyi <peterke@gmail.com> | 2019-01-16 04:25:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-16 04:25:47 +0800 |
commit | c03f694be5c81e287c2d67fff81eea5e23eaf3ba (patch) | |
tree | 179a3fc48ae25244467b00179e79a4f11779ff5c | |
parent | 115b1c38ac45d83b90770ab80e39665e093fe804 (diff) | |
parent | 2a2fd5adf8f9fa96aabeedc6aba35c356da8c8c3 (diff) | |
download | dexon-c03f694be5c81e287c2d67fff81eea5e23eaf3ba.tar.gz dexon-c03f694be5c81e287c2d67fff81eea5e23eaf3ba.tar.zst dexon-c03f694be5c81e287c2d67fff81eea5e23eaf3ba.zip |
Merge pull request #18454 from karalabe/postpone-constantinople
params: postpone Constantinople due to net SSTORE reentrancy
-rw-r--r-- | params/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/params/config.go b/params/config.go index 2935ef1f3..fefc16106 100644 --- a/params/config.go +++ b/params/config.go @@ -42,7 +42,7 @@ var ( EIP155Block: big.NewInt(2675000), EIP158Block: big.NewInt(2675000), ByzantiumBlock: big.NewInt(4370000), - ConstantinopleBlock: big.NewInt(7080000), + ConstantinopleBlock: nil, Ethash: new(EthashConfig), } |