Skip to content
Merged
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
75 changes: 75 additions & 0 deletions abi/cbor_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions abi/deal.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import "github.com/filecoin-project/go-state-types/big"

type DealID uint64

type DealIDList []DealID

// BigInt types are aliases rather than new types because the latter introduce incredible amounts of noise
// converting to and from types in order to manipulate values.
// We give up some type safety for ergonomics.
Expand Down
1 change: 1 addition & 0 deletions gen/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ func main() {
abi.PieceInfo{},
abi.SectorID{},
abi.AddrPairKey{},
abi.DealIDList{},
); err != nil {
panic(err)
}
Expand Down
Loading