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 x/epochs/types/identifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func ValidateEpochIdentifierInterface(i interface{}) error {
return nil
}

// ValidateEpochIdentifierInterface performs a stateless
// ValidateEpochIdentifierString performs a stateless
// validation of the epoch ID.
func ValidateEpochIdentifierString(s string) error {
s = strings.TrimSpace(s)
Expand Down
2 changes: 1 addition & 1 deletion x/masterchef/keeper/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ func (k Keeper) InitPoolParams(ctx sdk.Context, poolId uint64) bool {
return true
}

// InitStableStakePoolMultiplier: create a stable stake pool information responding to the pool creation.
// InitStableStakePoolParams: create a stable stake pool information responding to the pool creation.
func (k Keeper) InitStableStakePoolParams(ctx sdk.Context, poolId uint64) bool {
_, found := k.GetPoolInfo(ctx, poolId)
if !found {
Expand Down