mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
2941e754e9
Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local>
11 lines
200 B
Go
11 lines
200 B
Go
package adapter
|
|
|
|
import (
|
|
"context"
|
|
"math/big"
|
|
|
|
"github.com/ledgerwatch/erigon/core/types"
|
|
)
|
|
|
|
type BlockPropagator func(ctx context.Context, header *types.Header, body *types.RawBody, td *big.Int)
|