ConsensusCommitDigestInterface
type ConsensusCommitDigestInterface
The digest of a consensus commit.
type ConsensusCommitDigestInterface interface {
// Returns the next digest in byte-increasing order.
NextLexicographical() *ConsensusCommitDigest
// Returns the next digest in byte-increasing order, or `None` if
// the result would overflow.
NextLexicographicalOpt() **ConsensusCommitDigest
ToBase58() string
ToBytes() []byte
}