Documentation ¶
Overview ¶
Package bor is a generated GoMock package.
Package bor is a generated GoMock package.
Index ¶
- Constants
- Variables
- func AppendBytes32(data ...[]byte) []byte
- func BorRLP(header *types.Header, c *erigonchain.BorConfig) []byte
- func CalcProducerDelay(number uint64, succession int, c *erigonchain.BorConfig) uint64
- func Convert(input [][32]byte) [][]byte
- func ConvertTo32(input []byte) (output [32]byte, err error)
- func IsBlockOnTime(parent *types.Header, header *types.Header, number uint64, succession int, ...) bool
- func NextPowerOfTwo(n uint64) uint64
- func SealHash(header *types.Header, c *erigonchain.BorConfig) (hash libcommon.Hash)
- type API
- func (api *API) GetAuthor(number *rpc.BlockNumber) (*common.Address, error)
- func (api *API) GetCurrentProposer() (common.Address, error)
- func (api *API) GetCurrentValidators() ([]*valset.Validator, error)
- func (api *API) GetRootHash(start uint64, end uint64) (string, error)
- func (api *API) GetSigners(number *rpc.BlockNumber) ([]common.Address, error)
- func (api *API) GetSignersAtHash(hash common.Hash) ([]common.Address, error)
- func (api *API) GetSnapshot(number *rpc.BlockNumber) (*Snapshot, error)
- func (api *API) GetSnapshotAtHash(hash common.Hash) (*Snapshot, error)
- func (api *API) GetSnapshotProposer(number *rpc.BlockNumber) (common.Address, error)
- func (api *API) GetSnapshotProposerSequence(number *rpc.BlockNumber) (BlockSigners, error)
- type BlockSigners
- type BlockTooSoonError
- type Bor
- func (c *Bor) APIs(chain consensus.ChainHeaderReader) []rpc.API
- func (c *Bor) Author(header *types.Header) (libcommon.Address, error)
- func (c *Bor) Authorize(currentSigner libcommon.Address, signFn SignerFn)
- func (c *Bor) CalcDifficulty(chain consensus.ChainHeaderReader, _, _ uint64, _ *big.Int, ...) *big.Int
- func (c *Bor) Close() error
- func (c *Bor) CommitStates(state *state.IntraBlockState, header *types.Header, ...) ([]*types.StateSyncData, error)
- func (c *Bor) Finalize(config *chain.Config, header *types.Header, state *state.IntraBlockState, ...) (types.Transactions, types.Receipts, error)
- func (c *Bor) FinalizeAndAssemble(chainConfig *chain.Config, header *types.Header, state *state.IntraBlockState, ...) (*types.Block, types.Transactions, types.Receipts, error)
- func (c *Bor) GenerateSeal(chain consensus.ChainHeaderReader, currnt, parent *types.Header, ...) []byte
- func (c *Bor) GetCurrentValidators(blockNumber uint64, signer libcommon.Address, ...) ([]*valset.Validator, error)
- func (c *Bor) Initialize(config *chain.Config, chain consensus.ChainHeaderReader, header *types.Header, ...)
- func (c *Bor) IsServiceTransaction(sender libcommon.Address, syscall consensus.SystemCall) bool
- func (c *Bor) Prepare(chain consensus.ChainHeaderReader, header *types.Header, ...) error
- func (c *Bor) Seal(chain consensus.ChainHeaderReader, block *types.Block, ...) error
- func (c *Bor) SealHash(header *types.Header) libcommon.Hash
- func (c *Bor) SetHeimdallClient(h IHeimdallClient)
- func (c *Bor) Type() erigonchain.ConsensusName
- func (c *Bor) VerifyHeader(chain consensus.ChainHeaderReader, header *types.Header, seal bool) error
- func (c *Bor) VerifyHeaders(chain consensus.ChainHeaderReader, headers []*types.Header, _ []bool) (chan<- struct{}, <-chan error)
- func (c *Bor) VerifySeal(chain consensus.ChainHeaderReader, header *types.Header) error
- func (c *Bor) VerifyUncles(_ consensus.ChainReader, _ *types.Header, uncles []*types.Header) error
- type GenesisContract
- type IHeimdallClient
- type InvalidStateReceivedError
- type MaxCheckpointLengthExceededError
- type MismatchingValidatorsError
- type MockGenesisContract
- type MockGenesisContractMockRecorder
- type MockSpanner
- func (m *MockSpanner) CommitSpan(arg0 span.HeimdallSpan, arg1 consensus.SystemCall) error
- func (m *MockSpanner) EXPECT() *MockSpannerMockRecorder
- func (m *MockSpanner) GetCurrentSpan(arg0 consensus.SystemCall) (*span.Span, error)
- func (m *MockSpanner) GetCurrentValidators(arg0 uint64, arg1 common.Address, ...) ([]*valset.Validator, error)
- type MockSpannerMockRecorder
- type SignerFn
- type Snapshot
- type Spanner
- type UnauthorizedProposerError
- type UnauthorizedSignerError
- type WrongDifficultyError
Constants ¶
const BorSeparate = "BorSeparate"
Variables ¶
var ( // ErrInvalidTimestamp is returned if the timestamp of a block is lower than // the previous block's timestamp + the minimum block period. ErrInvalidTimestamp = errors.New("invalid timestamp") )
Various error messages to mark blocks invalid. These should be private to prevent engine specific errors from being referenced in the remainder of the codebase, inherently breaking if the engine is swapped out. Please put common error types into the consensus package.
var ( // MaxCheckpointLength is the maximum number of blocks that can be requested for constructing a checkpoint root hash MaxCheckpointLength = uint64(math.Pow(2, 15)) )
Functions ¶
func AppendBytes32 ¶
func BorRLP ¶
func BorRLP(header *types.Header, c *erigonchain.BorConfig) []byte
BorRLP returns the rlp bytes which needs to be signed for the bor sealing. The RLP to sign consists of the entire header apart from the 65 byte signature contained at the end of the extra data.
Note, the method requires the extra data to be at least 65 bytes, otherwise it panics. This is done to avoid accidentally using both forms (signature present or not), which could be abused to produce different hashes for the same header.
func CalcProducerDelay ¶
func CalcProducerDelay(number uint64, succession int, c *erigonchain.BorConfig) uint64
CalcProducerDelay is the block delay algorithm based on block time, period, producerDelay and turn-ness of a signer
func ConvertTo32 ¶
func IsBlockOnTime ¶
func NextPowerOfTwo ¶
Types ¶
type API ¶
type API struct {
// contains filtered or unexported fields
}
API is a user facing RPC API to allow controlling the signer and voting mechanisms of the proof-of-authority scheme.
func (*API) GetCurrentProposer ¶
GetCurrentProposer gets the current proposer
func (*API) GetCurrentValidators ¶
GetCurrentValidators gets the current validators
func (*API) GetRootHash ¶
GetRootHash returns the merkle root of the start to end block headers
func (*API) GetSigners ¶
GetSigners retrieves the list of authorized signers at the specified block.
func (*API) GetSignersAtHash ¶
GetSignersAtHash retrieves the list of authorized signers at the specified block.
func (*API) GetSnapshot ¶
func (api *API) GetSnapshot(number *rpc.BlockNumber) (*Snapshot, error)
GetSnapshot retrieves the state snapshot at a given block.
func (*API) GetSnapshotAtHash ¶
GetSnapshotAtHash retrieves the state snapshot at a given block.
func (*API) GetSnapshotProposer ¶
GetSnapshotProposer retrieves the in-turn signer at a given block.
func (*API) GetSnapshotProposerSequence ¶
func (api *API) GetSnapshotProposerSequence(number *rpc.BlockNumber) (BlockSigners, error)
GetSnapshotProposerSequence retrieves the in-turn signers of all sprints in a span
type BlockSigners ¶
type BlockTooSoonError ¶
func (*BlockTooSoonError) Error ¶
func (e *BlockTooSoonError) Error() string
type Bor ¶
type Bor struct { DB kv.RwDB // Database to store and retrieve snapshot checkpoints GenesisContractsClient GenesisContract HeimdallClient IHeimdallClient // contains filtered or unexported fields }
Bor is the matic-bor consensus engine
func New ¶
func New( chainConfig *chain.Config, db kv.RwDB, spanner Spanner, heimdallClient IHeimdallClient, genesisContracts GenesisContract, ) *Bor
New creates a Matic Bor consensus engine.
func (*Bor) APIs ¶
func (c *Bor) APIs(chain consensus.ChainHeaderReader) []rpc.API
APIs implements consensus.Engine, returning the user facing RPC API to allow controlling the signer voting.
func (*Bor) Author ¶
Author implements consensus.Engine, returning the Ethereum address recovered from the signature in the header's extra-data section. This is thread-safe (only access the header and config (which is never updated), as well as signatures, which are lru.ARCCache, which is thread-safe)
func (*Bor) Authorize ¶
Authorize injects a private key into the consensus engine to mint new blocks with.
func (*Bor) CalcDifficulty ¶
func (*Bor) Close ¶
Close implements consensus.Engine. It's a noop for bor as there are no background threads.
func (*Bor) CommitStates ¶
func (c *Bor) CommitStates( state *state.IntraBlockState, header *types.Header, chain statefull.ChainContext, syscall consensus.SystemCall, ) ([]*types.StateSyncData, error)
CommitStates commit states
func (*Bor) Finalize ¶
func (c *Bor) Finalize(config *chain.Config, header *types.Header, state *state.IntraBlockState, txs types.Transactions, uncles []*types.Header, r types.Receipts, withdrawals []*types.Withdrawal, chain consensus.ChainHeaderReader, syscall consensus.SystemCall, ) (types.Transactions, types.Receipts, error)
Finalize implements consensus.Engine, ensuring no uncles are set, nor block rewards given.
func (*Bor) FinalizeAndAssemble ¶
func (c *Bor) FinalizeAndAssemble(chainConfig *chain.Config, header *types.Header, state *state.IntraBlockState, txs types.Transactions, uncles []*types.Header, receipts types.Receipts, withdrawals []*types.Withdrawal, chain consensus.ChainHeaderReader, syscall consensus.SystemCall, call consensus.Call, ) (*types.Block, types.Transactions, types.Receipts, error)
FinalizeAndAssemble implements consensus.Engine, ensuring no uncles are set, nor block rewards given, and returns the final block.
func (*Bor) GenerateSeal ¶
func (*Bor) GetCurrentValidators ¶
func (*Bor) Initialize ¶
func (c *Bor) Initialize(config *chain.Config, chain consensus.ChainHeaderReader, header *types.Header, state *state.IntraBlockState, txs []types.Transaction, uncles []*types.Header, syscall consensus.SystemCall)
func (*Bor) IsServiceTransaction ¶
func (*Bor) Prepare ¶
func (c *Bor) Prepare(chain consensus.ChainHeaderReader, header *types.Header, state *state.IntraBlockState) error
Prepare implements consensus.Engine, preparing all the consensus fields of the header for running the transactions on top.
func (*Bor) Seal ¶
func (c *Bor) Seal(chain consensus.ChainHeaderReader, block *types.Block, results chan<- *types.Block, stop <-chan struct{}) error
Seal implements consensus.Engine, attempting to create a sealed block using the local signing credentials.
func (*Bor) SetHeimdallClient ¶
func (c *Bor) SetHeimdallClient(h IHeimdallClient)
func (*Bor) Type ¶
func (c *Bor) Type() erigonchain.ConsensusName
Type returns underlying consensus engine
func (*Bor) VerifyHeader ¶
func (c *Bor) VerifyHeader(chain consensus.ChainHeaderReader, header *types.Header, seal bool) error
VerifyHeader checks whether a header conforms to the consensus rules.
func (*Bor) VerifyHeaders ¶
func (c *Bor) VerifyHeaders(chain consensus.ChainHeaderReader, headers []*types.Header, _ []bool) (chan<- struct{}, <-chan error)
VerifyHeaders is similar to VerifyHeader, but verifies a batch of headers. The method returns a quit channel to abort the operations and a results channel to retrieve the async verifications (the order is that of the input slice).
func (*Bor) VerifySeal ¶
VerifySeal implements consensus.Engine, checking whether the signature contained in the header satisfies the consensus protocol requirements.
func (*Bor) VerifyUncles ¶
VerifyUncles implements consensus.Engine, always returning an error for any uncles as this consensus mechanism doesn't permit uncles. VerifyUncles implements consensus.Engine, always returning an error for any uncles as this consensus mechanism doesn't permit uncles.
type GenesisContract ¶
type GenesisContract interface { CommitState(event *clerk.EventRecordWithTime, syscall consensus.SystemCall) error LastStateId(syscall consensus.SystemCall) (*big.Int, error) }
type IHeimdallClient ¶
type IHeimdallClient interface { StateSyncEvents(ctx context.Context, fromID uint64, to int64) ([]*clerk.EventRecordWithTime, error) Span(ctx context.Context, spanID uint64) (*span.HeimdallSpan, error) FetchCheckpoint(ctx context.Context, number int64) (*checkpoint.Checkpoint, error) FetchCheckpointCount(ctx context.Context) (int64, error) Close() }
type InvalidStateReceivedError ¶
type InvalidStateReceivedError struct { Number uint64 LastStateID uint64 To *time.Time Event *clerk.EventRecordWithTime }
func (*InvalidStateReceivedError) Error ¶
func (e *InvalidStateReceivedError) Error() string
type MaxCheckpointLengthExceededError ¶
func (*MaxCheckpointLengthExceededError) Error ¶
func (e *MaxCheckpointLengthExceededError) Error() string
type MismatchingValidatorsError ¶
type MismatchingValidatorsError struct { Number uint64 ValidatorSetSnap []byte ValidatorSetHeader []byte }
MismatchingValidatorsError is returned if a last block in sprint contains a list of validators different from the one that local node calculated
func (*MismatchingValidatorsError) Error ¶
func (e *MismatchingValidatorsError) Error() string
type MockGenesisContract ¶
type MockGenesisContract struct {
// contains filtered or unexported fields
}
MockGenesisContract is a mock of GenesisContract interface.
func NewMockGenesisContract ¶
func NewMockGenesisContract(ctrl *gomock.Controller) *MockGenesisContract
NewMockGenesisContract creates a new mock instance.
func (*MockGenesisContract) CommitState ¶
func (m *MockGenesisContract) CommitState(arg0 *clerk.EventRecordWithTime, arg1 consensus.SystemCall) error
CommitState mocks base method.
func (*MockGenesisContract) EXPECT ¶
func (m *MockGenesisContract) EXPECT() *MockGenesisContractMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockGenesisContract) LastStateId ¶
func (m *MockGenesisContract) LastStateId(arg0 consensus.SystemCall) (*big.Int, error)
LastStateId mocks base method.
type MockGenesisContractMockRecorder ¶
type MockGenesisContractMockRecorder struct {
// contains filtered or unexported fields
}
MockGenesisContractMockRecorder is the mock recorder for MockGenesisContract.
func (*MockGenesisContractMockRecorder) CommitState ¶
func (mr *MockGenesisContractMockRecorder) CommitState(arg0, arg1 interface{}) *gomock.Call
CommitState indicates an expected call of CommitState.
func (*MockGenesisContractMockRecorder) LastStateId ¶
func (mr *MockGenesisContractMockRecorder) LastStateId(arg0 interface{}) *gomock.Call
LastStateId indicates an expected call of LastStateId.
type MockSpanner ¶
type MockSpanner struct {
// contains filtered or unexported fields
}
MockSpanner is a mock of Spanner interface.
func NewMockSpanner ¶
func NewMockSpanner(ctrl *gomock.Controller) *MockSpanner
NewMockSpanner creates a new mock instance.
func (*MockSpanner) CommitSpan ¶
func (m *MockSpanner) CommitSpan(arg0 span.HeimdallSpan, arg1 consensus.SystemCall) error
CommitSpan mocks base method.
func (*MockSpanner) EXPECT ¶
func (m *MockSpanner) EXPECT() *MockSpannerMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockSpanner) GetCurrentSpan ¶
func (m *MockSpanner) GetCurrentSpan(arg0 consensus.SystemCall) (*span.Span, error)
GetCurrentSpan mocks base method.
func (*MockSpanner) GetCurrentValidators ¶
func (m *MockSpanner) GetCurrentValidators(arg0 uint64, arg1 common.Address, arg2 func(uint64) (*span.HeimdallSpan, error)) ([]*valset.Validator, error)
GetCurrentValidators mocks base method.
type MockSpannerMockRecorder ¶
type MockSpannerMockRecorder struct {
// contains filtered or unexported fields
}
MockSpannerMockRecorder is the mock recorder for MockSpanner.
func (*MockSpannerMockRecorder) CommitSpan ¶
func (mr *MockSpannerMockRecorder) CommitSpan(arg0, arg1 interface{}) *gomock.Call
CommitSpan indicates an expected call of CommitSpan.
func (*MockSpannerMockRecorder) GetCurrentSpan ¶
func (mr *MockSpannerMockRecorder) GetCurrentSpan(arg0 interface{}) *gomock.Call
GetCurrentSpan indicates an expected call of GetCurrentSpan.
func (*MockSpannerMockRecorder) GetCurrentValidators ¶
func (mr *MockSpannerMockRecorder) GetCurrentValidators(arg0, arg1, arg2 interface{}) *gomock.Call
GetCurrentValidators indicates an expected call of GetCurrentValidators.
type SignerFn ¶
SignerFn is a signer callback function to request a header to be signed by a backing account.
type Snapshot ¶
type Snapshot struct { Number uint64 `json:"number"` // Block number where the snapshot was created Hash common.Hash `json:"hash"` // Block hash where the snapshot was created ValidatorSet *valset.ValidatorSet `json:"validatorSet"` // Validator set at this moment Recents map[uint64]common.Address `json:"recents"` // Set of recent signers for spam protections // contains filtered or unexported fields }
Snapshot is the state of the authorization voting at a given point in time.
func (*Snapshot) Difficulty ¶
Difficulty returns the difficulty for a particular signer at the current snapshot number
type Spanner ¶
type Spanner interface { GetCurrentSpan(syscall consensus.SystemCall) (*span.Span, error) GetCurrentValidators(blockNumber uint64, signer libcommon.Address, getSpanForBlock func(blockNum uint64) (*span.HeimdallSpan, error)) ([]*valset.Validator, error) CommitSpan(heimdallSpan span.HeimdallSpan, syscall consensus.SystemCall) error }
type UnauthorizedProposerError ¶
type UnauthorizedProposerError struct {}
UnauthorizedProposerError is returned if a header is [being] signed by an unauthorized entity.
func (*UnauthorizedProposerError) Error ¶
func (e *UnauthorizedProposerError) Error() string
type UnauthorizedSignerError ¶
type UnauthorizedSignerError struct {}
UnauthorizedSignerError is returned if a header is [being] signed by an unauthorized entity.
func (*UnauthorizedSignerError) Error ¶
func (e *UnauthorizedSignerError) Error() string
type WrongDifficultyError ¶
WrongDifficultyError is returned if the difficulty of a block doesn't match the turn of the signer.
func (*WrongDifficultyError) Error ¶
func (e *WrongDifficultyError) Error() string