Versions in this module Expand all Collapse all v5 v5.0.0 May 18, 2023 Changes in this version + func Builder(ctx *database.Context) (database.Database, error) + type Database struct + EncodingConfig *simappparams.EncodingConfig + Logger logging.Logger + SQL *sqlx.DB + func (db *Database) Close() + func (db *Database) GetLastBlockHeight() (int64, error) + func (db *Database) GetLastPruned() (int64, error) + func (db *Database) GetMissingHeights(startHeight, endHeight int64) []int64 + func (db *Database) GetTotalBlocks() int64 + func (db *Database) HasBlock(height int64) (bool, error) + func (db *Database) HasValidator(addr string) (bool, error) + func (db *Database) Prune(height int64) error + func (db *Database) SaveBlock(block *types.Block) error + func (db *Database) SaveCommitSignatures(signatures []*types.CommitSig) error + func (db *Database) SaveMessage(msg *types.Message) error + func (db *Database) SaveTx(tx *types.Tx) error + func (db *Database) SaveValidators(validators []*types.Validator) error + func (db *Database) StoreLastPruned(height int64) error