Skip to content

Commit

Permalink
chg: upgrade deps and solve sec issues
Browse files Browse the repository at this point in the history
  • Loading branch information
marcello33 committed Jun 10, 2024
1 parent 8710b45 commit 18ad1df
Show file tree
Hide file tree
Showing 4 changed files with 641 additions and 574 deletions.
5 changes: 4 additions & 1 deletion ethdb/pebble/pebble.go
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,10 @@ func (b *batch) Replay(w ethdb.KeyValueWriter) error {
reader := b.b.Reader()

for {
kind, k, v, ok := reader.Next()
kind, k, v, ok, err := reader.Next()
if err != nil {
return err
}
if !ok {
break
}
Expand Down
Loading

0 comments on commit 18ad1df

Please sign in to comment.