type Helper interface {
// GenesisBlock should return the genesis block required to bootstrap// the ledger (be it reading from the filesystem, generating it, etc.)
GenesisBlock() *ab.Block
}
Helper defines the functions a bootstrapping implementation should provide.