(blockHash common.Uint256)
| 107 | return self.ldgStore.GetHeaderByHash(blockHash) |
| 108 | } |
| 109 | func (self *Ledger) GetRawHeaderByHash(blockHash common.Uint256) (*types.RawHeader, error) { |
| 110 | return self.ldgStore.GetRawHeaderByHash(blockHash) |
| 111 | } |
| 112 | |
| 113 | func (self *Ledger) GetBlockHash(height uint32) common.Uint256 { |
| 114 | return self.ldgStore.GetBlockHash(height) |
nothing calls this directly
no test coverage detected