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