Versions in this module Expand all Collapse all v0 v0.0.3 Sep 11, 2024 Changes in this version + type Producer interface + AtIndex func(uint64) (*chainhash.Hash, error) + Encode func(io.Writer) error + type RevocationProducer struct + func NewRevocationProducer(root chainhash.Hash) *RevocationProducer + func NewRevocationProducerFromBytes(data []byte) (*RevocationProducer, error) + func (p *RevocationProducer) AtIndex(v uint64) (*chainhash.Hash, error) + func (p *RevocationProducer) Encode(w io.Writer) error + type RevocationStore struct + func NewRevocationStore() *RevocationStore + func NewRevocationStoreFromBytes(r io.Reader) (*RevocationStore, error) + func (store *RevocationStore) AddNextEntry(hash *chainhash.Hash) error + func (store *RevocationStore) Encode(w io.Writer) error + func (store *RevocationStore) LookUp(v uint64) (*chainhash.Hash, error) + type Store interface + AddNextEntry func(*chainhash.Hash) error + Encode func(io.Writer) error + LookUp func(uint64) (*chainhash.Hash, error)