Skip to content

Commit

Permalink
cmd/geth: fix build error (ethereum#28585)
Browse files Browse the repository at this point in the history
  • Loading branch information
fjl authored Nov 22, 2023
1 parent d468c33 commit 63127f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/geth/snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ func snapshotExportPreimages(ctx *cli.Context) error {
chaindb := utils.MakeChainDatabase(ctx, stack, true)
defer chaindb.Close()

triedb := utils.MakeTrieDatabase(ctx, chaindb, false, true)
triedb := utils.MakeTrieDatabase(ctx, chaindb, false, true, false)
defer triedb.Close()

var root common.Hash
Expand Down

0 comments on commit 63127f5

Please sign in to comment.