Skip to content

Commit

Permalink
fix verifier_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
lispc committed Aug 27, 2024
1 parent 5d9d416 commit b5fddcc
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions coordinator/internal/logic/verifier/verifier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,18 @@ func TestFFI(t *testing.T) {

cfg := &config.VerifierConfig{
MockMode: false,
ParamsPath: *paramsPath,
AssetsPathLo: *assetsPathLo,
AssetsPathHi: *assetsPathHi,
LowVersionCircuit: &CircuitConfig {
ParamsPath : *paramsPath,
AssetsPath : *assetsPathLo,
ForkName : "darwin"
MinProverVersion: ""
}
HighVersionCircuit: &CircuitConfig {
ParamsPath : *paramsPath,
AssetsPath : *assetsPathHi,
ForkName : "darwinV2"
MinProverVersion: ""
}
}

v, err := NewVerifier(cfg)
Expand Down

0 comments on commit b5fddcc

Please sign in to comment.