Skip to content

Commit f62fdbb

Browse files
committed
update
1 parent 9e0f842 commit f62fdbb

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

coordinator/cmd/api/app/mock_app.go

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,13 @@ func (c *CoordinatorApp) MockConfig(store bool) error {
9191
ProversPerSession: 1,
9292
Verifier: &coordinatorConfig.VerifierConfig{
9393
MinProverVersion: "v4.4.89",
94-
Verifiers: []coordinatorConfig.AssetConfig{{
95-
AssetsPath: "",
96-
ForkName: "feynman",
94+
Verifiers: []coordinatorConfig.AssetConfig{
95+
{
96+
AssetsPath: "",
97+
ForkName: "galileo",
98+
},
9799
},
98-
}},
100+
},
99101
BatchCollectionTimeSec: 60,
100102
ChunkCollectionTimeSec: 60,
101103
SessionAttempts: 10,

coordinator/conf/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
"verifiers": [
1212
{
1313
"assets_path": "assets",
14-
"fork_name": "euclidV2"
14+
"fork_name": "feynman"
1515
},
1616
{
1717
"assets_path": "assets",
18-
"fork_name": "feynman"
18+
"fork_name": "galileo"
1919
}
2020
]
2121
}

coordinator/internal/config/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func TestConfig(t *testing.T) {
2323
"min_prover_version": "v4.4.45",
2424
"verifiers": [{
2525
"assets_path": "assets",
26-
"fork_name": "feynman"
26+
"fork_name": "galileo",
2727
}]
2828
},
2929
"max_verifier_workers": 4

0 commit comments

Comments
 (0)