mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-24 20:47:16 +00:00
28 lines
700 B
Go
28 lines
700 B
Go
|
package snapshotsync
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/ledgerwatch/erigon-lib/kv"
|
||
|
"github.com/ledgerwatch/erigon/common"
|
||
|
"github.com/ledgerwatch/erigon/core/rawdb"
|
||
|
"github.com/ledgerwatch/erigon/core/types"
|
||
|
)
|
||
|
|
||
|
// BlockReader can read blocks from db and snapshots
|
||
|
type BlockReader struct {
|
||
|
}
|
||
|
|
||
|
func NewBlockReader() *BlockReader {
|
||
|
return &BlockReader{}
|
||
|
}
|
||
|
|
||
|
func (back *BlockReader) BlockWithSenders(ctx context.Context, tx kv.Tx, hash common.Hash, blockHeight uint64) (block *types.Block, senders []common.Address, err error) {
|
||
|
block, senders, err = rawdb.ReadBlockWithSenders(tx, hash, blockHeight)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
//TODO: read snapshots
|
||
|
return block, senders, nil
|
||
|
}
|