Skip to content

Commit

Permalink
fix compile bug
Browse files Browse the repository at this point in the history
  • Loading branch information
amoylan2 committed Aug 21, 2024
1 parent acafdd7 commit dda3faa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions coordinator/internal/logic/verifier/verifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ type rustVerifierConfig struct {
// NewVerifier Sets up a rust ffi to call verify.
func NewVerifier(cfg *config.VerifierConfig) (*Verifier, error) {
if cfg.MockMode {
chunkVKMap := map[string]string{cfg.ForkName: "mock_vk"}
batchVKMap := map[string]string{cfg.ForkName: "mock_vk"}
bundleVKMap := map[string]string{cfg.ForkName: "mock_vk"}
chunkVKMap := map[string]struct{}{"mock_vk": struct{}{}}
batchVKMap := map[string]struct{}{"mock_vk": struct{}{}}
bundleVKMap := map[string]struct{}{"mock_vk": struct{}{}}
return &Verifier{cfg: cfg, ChunkVKMap: chunkVKMap, BatchVKMap: batchVKMap, BundleVkMap: bundleVKMap}, nil
}
verifierConfig := rustVerifierConfig{
Expand Down

0 comments on commit dda3faa

Please sign in to comment.