CheckpointContentsInterface
type CheckpointContentsInterface
The committed to contents of a checkpoint.
`CheckpointContents` contains a list of digests of Transactions, their effects, and the user signatures that authorized their execution included in a checkpoint.
BCS
The BCS serialized form for this type is defined by the following ABNF:
```text checkpoint-contents = %d00 checkpoint-contents-v1 ; variant 0 ```
type CheckpointContentsInterface interface {
AsV1() *CheckpointContentsV1
Digest() *CheckpointContentsDigest
// Whether this checkpoint has no transactions.
IsEmpty() bool
IsV1() bool
// The number of transactions in this checkpoint.
Len() uint64
Transactions() []*CheckpointTransactionInfo
}