Skip to main content

TransactionDigestInterface

type TransactionDigestInterface

The digest of a `Transaction`.

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