2021-04-06 12:54:50 +07:00
|
|
|
package adapter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"math/big"
|
|
|
|
|
2021-05-21 01:25:53 +07:00
|
|
|
"github.com/ledgerwatch/erigon/core/types"
|
2021-04-06 12:54:50 +07:00
|
|
|
)
|
|
|
|
|
2021-05-14 22:16:16 +01:00
|
|
|
type BlockPropagator func(ctx context.Context, block *types.Block, td *big.Int)
|