From 92f6cfaf37fa0b19becce0d937e91c60c7b4d5ca Mon Sep 17 00:00:00 2001 From: q9f <58883403+q9f@users.noreply.github.com> Date: Fri, 3 Apr 2020 14:42:40 +0200 Subject: [PATCH 1/3] ethcore/res: activate ecip-1088 phoenix on classic --- ethcore/res/ethereum/classic.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ethcore/res/ethereum/classic.json b/ethcore/res/ethereum/classic.json index f9fe4a1098e..fd6ce73f4a0 100644 --- a/ethcore/res/ethereum/classic.json +++ b/ethcore/res/ethereum/classic.json @@ -41,11 +41,13 @@ "eip145Transition": "0x921288", "eip1014Transition": "0x921288", "eip1052Transition": "0x921288", - "eip1283Transition": "0xa03ae7", + "eip1283Transition": "0x0", + "eip1283DisableTransition": "0x0", + "eip1283ReenableTransition": "0xa03ae7", "eip1344Transition": "0xa03ae7", "eip1706Transition": "0xa03ae7", - "eip2028Transition": "0xa03ae7", - "eip2200AdvanceTransition": "0xa03ae7" + "eip1884Transition": "0xa03ae7", + "eip2028Transition": "0xa03ae7" }, "genesis": { "seal": { From baa0051d80d37c343ff673ca4f8c381cc87fb0b5 Mon Sep 17 00:00:00 2001 From: q9f <58883403+q9f@users.noreply.github.com> Date: Fri, 3 Apr 2020 14:48:10 +0200 Subject: [PATCH 2/3] scripts: validate classic mainnet spec for phoenix eips --- scripts/actions/validate-chainspecs.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/actions/validate-chainspecs.sh b/scripts/actions/validate-chainspecs.sh index bf88b74c08c..d4d0795143d 100755 --- a/scripts/actions/validate-chainspecs.sh +++ b/scripts/actions/validate-chainspecs.sh @@ -22,6 +22,10 @@ for eip in $(grep --only-matching "eip.*Transition" ethcore/res/ethereum/istanbu echo "ERROR: $eip is missing in the foundation json spec" ERR=1 fi + if ! grep -q $eip ethcore/res/ethereum/classic.json; then + echo "ERROR: $eip is missing in the classic json spec" + ERR=1 + fi done exit $ERR From 87c9a3a155f71725053a1621229df4f0c7a23b7c Mon Sep 17 00:00:00 2001 From: /raw PONG _GHMoaCXLT <58883403+q9f@users.noreply.github.com> Date: Sat, 11 Apr 2020 15:24:31 +0200 Subject: [PATCH 3/3] Revert "scripts: validate classic mainnet spec for phoenix eips" This reverts commit baa0051d80d37c343ff673ca4f8c381cc87fb0b5. --- scripts/actions/validate-chainspecs.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/actions/validate-chainspecs.sh b/scripts/actions/validate-chainspecs.sh index d4d0795143d..bf88b74c08c 100755 --- a/scripts/actions/validate-chainspecs.sh +++ b/scripts/actions/validate-chainspecs.sh @@ -22,10 +22,6 @@ for eip in $(grep --only-matching "eip.*Transition" ethcore/res/ethereum/istanbu echo "ERROR: $eip is missing in the foundation json spec" ERR=1 fi - if ! grep -q $eip ethcore/res/ethereum/classic.json; then - echo "ERROR: $eip is missing in the classic json spec" - ERR=1 - fi done exit $ERR