Skip to content

Commit

Permalink
fix(test,verifier): fix TestFFI (#1250)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmountaintop authored Apr 9, 2024
1 parent 6d6e98b commit b7324c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions coordinator/internal/logic/verifier/verifier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import (
"scroll-tech/common/types/message"

"scroll-tech/coordinator/internal/config"
"scroll-tech/coordinator/internal/logic/verifier"
)

var (
Expand All @@ -34,7 +33,7 @@ func TestFFI(t *testing.T) {
AssetsPath: *assetsPath,
}

v, err := verifier.NewVerifier(cfg)
v, err := NewVerifier(cfg)
as.NoError(err)

chunkProof1 := readChunkProof(*chunkProofPath1, as)
Expand Down

0 comments on commit b7324c7

Please sign in to comment.