Skip to content

Commit 73738c7

Browse files
authored
use consensus spec v1.5.0-alpha.0 test vectors; use Nim v2.0.4 specifically for 2.0.x (#6221)
1 parent 80edebf commit 73738c7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
cpu: amd64
3434
- os: windows
3535
cpu: amd64
36-
branch: [~, upstream/version-1-6, upstream/version-2-0]
36+
branch: [~, upstream/version-1-6, v2.0.4]
3737
exclude:
3838
- target:
3939
os: macos
@@ -47,7 +47,7 @@ jobs:
4747
include:
4848
- branch: upstream/version-1-6
4949
branch-short: version-1-6
50-
- branch: upstream/version-2-0
50+
- branch: v2.0.4
5151
branch-short: version-2-0
5252
nimflags-extra: --mm:refc
5353
- target:

beacon_chain/spec/datatypes/base.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export
7474
tables, results, endians2, json_serialization, sszTypes, beacon_time, crypto,
7575
digest, presets
7676

77-
const SPEC_VERSION* = "1.4.0"
77+
const SPEC_VERSION* = "1.5.0-alpha.0"
7878
## Spec version we're aiming to be compatible with, right now
7979

8080
const

tests/consensus_spec/test_fixture_fork_choice.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ template fcSuite(suiteName: static[string], testPathElem: static[string]) =
393393
let testsPath = presetPath/path/testPathElem
394394
if kind != pcDir or not os_ops.dirExists(testsPath):
395395
continue
396-
if testsPath.contains("/eip6110/") or testsPath.contains("\\eip6110\\"):
396+
if testsPath.contains("/electra/") or testsPath.contains("\\electra\\"):
397397
continue
398398
let fork = forkForPathComponent(path).valueOr:
399399
raiseAssert "Unknown test fork: " & testsPath

vendor/nim-eth2-scenarios

0 commit comments

Comments
 (0)