Skip to content

Commit

Permalink
add fix for local fork behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
cblgh authored and cryptix committed Feb 17, 2022
1 parent 6c01fe8 commit 9e66008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multilog/roaring/multilog.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func (log *MultiLog) openSublog(addr indexes.Addr) (*sublog, error) {
} else if err != nil {
return nil, err
} else {
seq = int64(r.GetCardinality() - 1)
seq = int64(r.GetCardinality())
}

var obsV uint64
Expand Down

0 comments on commit 9e66008

Please sign in to comment.