NumShares returns number of shares that the claim is holding
()
| 141 | type Claim interface { |
| 142 | // NumShares returns number of shares that the claim is holding |
| 143 | NumShares() *big.Int |
| 144 | GetShare(index int) Share |
| 145 | // Difficulty returns the min difficulty across all of its shares |
| 146 | Difficulty() *big.Int |
no outgoing calls