Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions ethcore/res/ethereum/classic.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
4 changes: 4 additions & 0 deletions scripts/actions/validate-chainspecs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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