Versions in this module Expand all Collapse all v3 v3.3.3 Oct 4, 2022 Changes in this version + func Builder(ctx *database.Context) (database.Database, error) + type Database struct + EncodingConfig *params.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) 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(transaction *coretypes.ResultTx) error + func (db *Database) SaveValidators(validators []*types.Validator) error + func (db *Database) StoreLastPruned(height int64) error