()
| 33 | func (s *Share) Nonce() uint64 { return s.nonce.Uint64() } |
| 34 | func (s *Share) MixDigest() common.Hash { return s.mixDigest } |
| 35 | func (s *Share) NumberU64() uint64 { return s.blockHeader.Number.Uint64() } |
| 36 | func (s *Share) NonceBig() *big.Int { |
| 37 | n := new(big.Int) |
| 38 | n.SetBytes(s.nonce[:]) |