fix: multiple typos of different importance (#25068)

Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
emmmm
2025-08-04 19:49:30 +00:00
committed by GitHub
co-authored by Alex | Interchain Labs
parent 86245cba91
commit bc8ac8108f
9 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -924,7 +924,7 @@ func (app *BaseApp) FinalizeBlock(req *abci.FinalizeBlockRequest) (res *abci.Fin
return res, err
}
// checkHalt checkes if height or time exceeds halt-height or halt-time respectively.
// checkHalt checks if height or time exceeds halt-height or halt-time respectively.
func (app *BaseApp) checkHalt(height int64, time time.Time) error {
var halt bool
switch {
+1 -1
View File
@@ -165,7 +165,7 @@ type BaseApp struct {
// nextBlockDelay is the delay to wait until the next block after ABCI has committed.
// This gives the application more time to receive precommits. This is the same as TimeoutCommit,
// but can new be set from the application. This value defaults to 0, and CometBFT will use the
// but can now be set from the application. This value defaults to 0, and CometBFT will use the
// legacy value set in config.toml if it is 0.
nextBlockDelay time.Duration
}
+1 -1
View File
@@ -22,7 +22,7 @@ func NewState(ctx sdk.Context, ms storetypes.CacheMultiStore) *State {
}
}
// CacheMultiStore calls and returns a CacheMultiStore on the state's underling
// CacheMultiStore calls and returns a CacheMultiStore on the state's underlying
// CacheMultiStore.
func (st *State) CacheMultiStore() storetypes.CacheMultiStore {
return st.MultiStore.CacheMultiStore()