()
| 84 | } |
| 85 | |
| 86 | func (c *Claim) HashBranch() []*big.Int { |
| 87 | if c.pamt == nil { |
| 88 | c.buildProofAugTree() |
| 89 | } |
| 90 | return c.pamt.HashBranchArray() |
| 91 | } |
| 92 | |
| 93 | func (c *Claim) buildProofAugTree() { |
| 94 | sort.Sort(c.shares) |
nothing calls this directly
no test coverage detected