0g-chain/migrate/v0_8/tendermint/v0_32/block_meta.go

12 lines
327 B
Go
Raw Normal View History

package v032
import (
tmtypes "github.com/tendermint/tendermint/types"
)
// BlockMeta contains meta information about a block - namely, it's ID and Header.
type BlockMeta struct {
BlockID tmtypes.BlockID `json:"block_id"` // the block hash and partsethash
Header Header `json:"header"` // The block's Header
}