Skip to content

Commit 1b37f37

Browse files
committed
Switched default test fork and testBlockchain command fork to Petersburg
1 parent c842d10 commit 1b37f37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"testStateConstantinople": "npm run build:dist && node ./tests/tester -s --fork='Constantinople' --dist",
1616
"testStatePetersburg": "npm run build:dist && node ./tests/tester -s --fork='Petersburg' --dist",
1717
"testBuildIntegrity": "npm run build:dist && node ./tests/tester -s --dist --test='stackOverflow'",
18-
"testBlockchain": "npm run build:dist && node --stack-size=1500 ./tests/tester -b --fork='Constantinople' --dist --excludeDir='GeneralStateTests'",
18+
"testBlockchain": "npm run build:dist && node --stack-size=1500 ./tests/tester -b --fork='Petersburg' --dist --excludeDir='GeneralStateTests'",
1919
"testBlockchainGeneralStateTests": "npm run build:dist && node --stack-size=1500 ./tests/tester -b --dist --dir='GeneralStateTests'",
2020
"testAPI": "tape './tests/api/**/*.js'",
2121
"test": "echo \"[INFO] Generic test cmd not used. See package.json for more specific test run cmds.\"",

tests/tester.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const argv = require('minimist')(process.argv.slice(2))
44
const tape = require('tape')
55
const testing = require('ethereumjs-testing')
6-
const FORK_CONFIG = argv.fork || 'Byzantium'
6+
const FORK_CONFIG = argv.fork || 'Petersburg'
77
const {
88
getRequiredForkConfigAlias
99
} = require('./util')

0 commit comments

Comments
 (0)