mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 19:50:36 +00:00
1185587b20
Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro-2.local>
17 lines
736 B
Go
17 lines
736 B
Go
package bor
|
|
|
|
import (
|
|
libcommon "github.com/ledgerwatch/erigon-lib/common"
|
|
"github.com/ledgerwatch/erigon/consensus"
|
|
"github.com/ledgerwatch/erigon/consensus/bor/heimdall/span"
|
|
"github.com/ledgerwatch/erigon/consensus/bor/valset"
|
|
)
|
|
|
|
//go:generate mockgen -destination=./span_mock.go -package=bor . Spanner
|
|
type Spanner interface {
|
|
GetCurrentSpan(syscall consensus.SystemCall) (*span.Span, error)
|
|
GetCurrentValidators(spanId uint64, signer libcommon.Address, chain consensus.ChainHeaderReader) ([]*valset.Validator, error)
|
|
GetCurrentProducers(spanId uint64, signer libcommon.Address, chain consensus.ChainHeaderReader) ([]*valset.Validator, error)
|
|
CommitSpan(heimdallSpan span.HeimdallSpan, syscall consensus.SystemCall) error
|
|
}
|