Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pkg/p2p/libp2p/stream_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ func TestStreamVersion(t *testing.T) {

if v == nil {
t.Fatal("expected version to be non-nil")
return
}

expected := semver.Version{Major: tc.wantMajor, Minor: tc.wantMinor}
Expand Down
2 changes: 1 addition & 1 deletion pkg/postage/batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type Batch struct {
Owner []byte // owner's ethereum address
Depth uint8 // batch depth, i.e., size = 2^{depth}
BucketDepth uint8 // the depth of neighbourhoods t
Immutable bool // if the batch allows adding new capacity (dilution)
Immutable bool // if true, chunks cannot be overwritten when buckets are full
}

// MarshalBinary implements BinaryMarshaller. It will attempt to serialize the
Expand Down
Loading