mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 05:38:55 +00:00
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
package utils
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/gob"
|
|
)
|
|
|
|
// BlockVote is for tracking which validators voted for a certain block hash
|
|
// and total deposit supported for such block hash.
|
|
type BlockVote struct {
|
|
VoterIndices []uint32
|
|
VoteTotalDeposit uint64
|
|
}
|
|
|
|
// BlockVoteCache is a map from hash to BlockVote object.
|
|
type BlockVoteCache map[[32]byte]*BlockVote
|
|
|
|
// NewBlockVote generates a fresh new BlockVote.
|
|
func NewBlockVote() *BlockVote {
|
|
return &BlockVote{VoterIndices: []uint32{}, VoteTotalDeposit: 0}
|
|
}
|
|
|
|
// Marshal serializes a BlockVote.
|
|
func (v *BlockVote) Marshal() ([]byte, error) {
|
|
var buf bytes.Buffer
|
|
encoder := gob.NewEncoder(&buf)
|
|
if err := encoder.Encode(v); err != nil {
|
|
return nil, err
|
|
}
|
|
return buf.Bytes(), nil
|
|
}
|
|
|
|
// Unmarshal deserializes a BlockVote.
|
|
func (v *BlockVote) Unmarshal(blob []byte) error {
|
|
buf := bytes.NewBuffer(blob)
|
|
decoder := gob.NewDecoder(buf)
|
|
return decoder.Decode(v)
|
|
}
|
|
|
|
// NewBlockVoteCache creates a new BlockVoteCache.
|
|
func NewBlockVoteCache() BlockVoteCache {
|
|
return make(BlockVoteCache)
|
|
}
|
|
|
|
// IsVoteCacheExist looks up a BlockVote with a hash.
|
|
func (blockVoteCache BlockVoteCache) IsVoteCacheExist(blockHash [32]byte) bool {
|
|
_, ok := blockVoteCache[blockHash]
|
|
return ok
|
|
}
|