(context.Context, uint64)
| 99 | type Store interface { |
| 100 | Height(context.Context) (uint64, error) |
| 101 | GetBlock(context.Context, uint64) (*bc.Block, error) |
| 102 | LatestSnapshot(context.Context) (*state.Snapshot, error) |
| 103 | |
| 104 | SaveBlock(context.Context, *bc.Block) error |