Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
BrannonKing committed Aug 19, 2021
1 parent 8ae0c66 commit 420b8fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion claimtrie/node/noderepo/pebble.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (repo *Pebble) IterateChildren(name []byte, f func(changes []change.Change)
end := make([]byte, len(name)) // max name length is 255
copy(end, name)
validEnd := false
for i := len(name)-1; i >= 0; i-- {
for i := len(name) - 1; i >= 0; i-- {
end[i]++
if end[i] != 0 {
validEnd = true
Expand Down

0 comments on commit 420b8fd

Please sign in to comment.