| 16 | } |
| 17 | |
| 18 | type Claim struct { |
| 19 | shares Shares |
| 20 | shareIndex *big.Int |
| 21 | amt *mtree.AugTree |
| 22 | pamt *mtree.AugTree |
| 23 | } |
| 24 | |
| 25 | func NewClaim() *Claim { |
| 26 | return &Claim{Shares{}, nil, nil, nil} |
nothing calls this directly
no outgoing calls
no test coverage detected