Skip to content

Commit

Permalink
chg: upgrade deps and solve sec issues (#1261)
Browse files Browse the repository at this point in the history
* chg: upgrade deps and solve sec issues

* chg: use old kzg-4844 repo

* chg: ignore explicitly Errorf return value
  • Loading branch information
marcello33 authored Jun 10, 2024
1 parent 8710b45 commit 97529db
Show file tree
Hide file tree
Showing 4 changed files with 638 additions and 572 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 97529db

Please sign in to comment.