()
| 28 | } |
| 29 | |
| 30 | func (ad AugData) CounterBytes() []byte { |
| 31 | max := msbPadding(ad.Max.(*big.Int).Bytes(), 16) |
| 32 | min := msbPadding(ad.Min.(*big.Int).Bytes(), 16) |
| 33 | return append(max, min...) |
| 34 | } |
| 35 | |
| 36 | type AugTree struct { |
| 37 | MerkleTree |
no test coverage detected