Skip to content

Commit 822f127

Browse files
committed
remove unused chainID arg
1 parent e08cad8 commit 822f127

File tree

1 file changed

+2
-2
lines changed
  • cmd/util/cmd/verify-evm-offchain-replay

1 file changed

+2
-2
lines changed

cmd/util/cmd/verify-evm-offchain-replay/verify.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func Verify(log zerolog.Logger, from uint64, to uint64, chainID flow.ChainID, da
3131
Str("evmStateGobDir", evmStateGobDir).
3232
Msgf("verifying range from %d to %d", from, to)
3333

34-
db, storages, executionDataStore, dsStore, err := initStorages(chainID, dataDir, executionDataDir)
34+
db, storages, executionDataStore, dsStore, err := initStorages(dataDir, executionDataDir)
3535
if err != nil {
3636
return fmt.Errorf("could not initialize storages: %w", err)
3737
}
@@ -100,7 +100,7 @@ func Verify(log zerolog.Logger, from uint64, to uint64, chainID flow.ChainID, da
100100
return nil
101101
}
102102

103-
func initStorages(chainID flow.ChainID, dataDir string, executionDataDir string) (
103+
func initStorages(dataDir string, executionDataDir string) (
104104
*badger.DB,
105105
*storage.All,
106106
execution_data.ExecutionDataGetter,

0 commit comments

Comments
 (0)