Skip to main content

CheckpointDigestInterface

type CheckpointDigestInterface

The digest of a `CheckpointSummary`.

type CheckpointDigestInterface interface {
// Returns the next digest in byte-increasing order.
NextLexicographical() *CheckpointDigest
// Returns the next digest in byte-increasing order, or `None` if
// the result would overflow.
NextLexicographicalOpt() **CheckpointDigest
ToBase58() string
ToBytes() []byte
}