Hash returns the block hash of the header, which is simply the keccak256 hash of its RLP encoding.
()
| 160 | // Hash returns the block hash of the header, which is simply the keccak256 hash of its |
| 161 | // RLP encoding. |
| 162 | func (h *Header) Hash() common.Hash { |
| 163 | return sigHash(h) |
| 164 | } |
| 165 | |
| 166 | // sigHash returns hash of header |
| 167 | func sigHash(header *Header) (hash common.Hash) { |