mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
2793ef6ec1
* move mocks to the owner packages * squash single file packages * move types to more appropriate files * remove unused mocks
37 lines
1.0 KiB
Go
37 lines
1.0 KiB
Go
package heimdall
|
|
|
|
import (
|
|
"github.com/google/btree"
|
|
|
|
"github.com/ledgerwatch/erigon/polygon/bor/valset"
|
|
)
|
|
|
|
// Span represents a current bor span
|
|
type Span struct {
|
|
ID uint64 `json:"span_id" yaml:"span_id"`
|
|
StartBlock uint64 `json:"start_block" yaml:"start_block"`
|
|
EndBlock uint64 `json:"end_block" yaml:"end_block"`
|
|
}
|
|
|
|
// HeimdallSpan represents span from heimdall APIs
|
|
type HeimdallSpan struct {
|
|
Span
|
|
ValidatorSet valset.ValidatorSet `json:"validator_set" yaml:"validator_set"`
|
|
SelectedProducers []valset.Validator `json:"selected_producers" yaml:"selected_producers"`
|
|
ChainID string `json:"bor_chain_id" yaml:"bor_chain_id"`
|
|
}
|
|
|
|
func (hs *HeimdallSpan) Less(other btree.Item) bool {
|
|
otherHs := other.(*HeimdallSpan)
|
|
if hs.EndBlock == 0 || otherHs.EndBlock == 0 {
|
|
// if endblock is not specified in one of the items, allow search by ID
|
|
return hs.ID < otherHs.ID
|
|
}
|
|
return hs.EndBlock < otherHs.EndBlock
|
|
}
|
|
|
|
type SpanResponse struct {
|
|
Height string `json:"height"`
|
|
Result HeimdallSpan `json:"result"`
|
|
}
|