| 19 | ) |
| 20 | |
| 21 | type Share struct { |
| 22 | blockHeader *types.Header |
| 23 | nonce types.BlockNonce |
| 24 | mixDigest common.Hash |
| 25 | shareDifficulty *big.Int |
| 26 | SolutionState int |
| 27 | dt *mtree.DagTree |
| 28 | } |
| 29 | |
| 30 | func (s *Share) Difficulty() *big.Int { return s.blockHeader.Difficulty } |
| 31 | func (s *Share) ShareDifficulty() *big.Int { return s.shareDifficulty } |
nothing calls this directly
no outgoing calls
no test coverage detected