Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
fix(prover): fix guardian prover APIs (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey authored Dec 2, 2023
1 parent 4bc2a63 commit 08c77f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prover/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func InitFromConfig(ctx context.Context, p *Prover, cfg *Config) (err error) {
// levelDB
var db ethdb.KeyValueStore
if cfg.DatabasePath != "" {
db, err := leveldb.New(cfg.DatabasePath, int(cfg.DatabaseCacheSize), 1, "taiko", false)
db, err = leveldb.New(cfg.DatabasePath, int(cfg.DatabaseCacheSize), 1, "taiko", false)
if err != nil {
return err
}
Expand Down

0 comments on commit 08c77f2

Please sign in to comment.