Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ func (app *App) GetMemKey(storeKey string) *storetypes.MemoryStoreKey {
return app.AppKeepers.GetMemKey(storeKey)
}

// kvStoreKeys returns all the kv store keys registered inside App.
// KvStoreKeys returns all the kv store keys registered inside App.
func (app *App) KvStoreKeys() map[string]*storetypes.KVStoreKey {

return app.AppKeepers.GetKVStoreKey()
Expand Down
2 changes: 1 addition & 1 deletion x/oracle/utils/packet_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ func MustDecode(data []byte, v ...interface{}) {
}
}

// DecodeUnsigned16 decodes the input bytes into `uint8` and returns the remaining bytes.
// DecodeUnsigned8 decodes the input bytes into `uint8` and returns the remaining bytes.
func DecodeUnsigned8(data []byte) (uint8, []byte, error) {
if len(data) < 1 {
return 0, nil, errors.New("obi: out of range")
Expand Down
2 changes: 1 addition & 1 deletion x/vaults/keeper/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
)

// EndBlocker called at every block, update validator set
// BeginBlocker called at every block, update validator set
func (k *Keeper) BeginBlocker(goCtx context.Context) error {
ctx := sdk.UnwrapSDKContext(goCtx)
currentTime := ctx.BlockTime()
Expand Down