()
| 77 | } |
| 78 | |
| 79 | func (c *Claim) CounterBranch() []*big.Int { |
| 80 | if c.pamt == nil { |
| 81 | c.buildProofAugTree() |
| 82 | } |
| 83 | return c.pamt.CounterBranchArray() |
| 84 | } |
| 85 | |
| 86 | func (c *Claim) HashBranch() []*big.Int { |
| 87 | if c.pamt == nil { |
nothing calls this directly
no test coverage detected