mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 03:22:18 +00:00
25 lines
582 B
Go
25 lines
582 B
Go
|
package adapter
|
||
|
|
||
|
import (
|
||
|
"github.com/ledgerwatch/turbo-geth/common"
|
||
|
"github.com/ledgerwatch/turbo-geth/core/rawdb"
|
||
|
"github.com/ledgerwatch/turbo-geth/core/types"
|
||
|
)
|
||
|
|
||
|
func NewBlockGetter(dbReader rawdb.DatabaseReader) *blockGetter {
|
||
|
return &blockGetter{dbReader}
|
||
|
}
|
||
|
|
||
|
type blockGetter struct {
|
||
|
dbReader rawdb.DatabaseReader
|
||
|
}
|
||
|
|
||
|
func (g *blockGetter) GetBlockByHash(hash common.Hash) *types.Block {
|
||
|
return rawdb.ReadBlockByHash(g.dbReader, hash)
|
||
|
|
||
|
}
|
||
|
|
||
|
func (g *blockGetter) GetBlock(hash common.Hash, number uint64) *types.Block {
|
||
|
return rawdb.ReadBlock(g.dbReader, hash, number)
|
||
|
}
|