Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

x: fix some function names in comment #731

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
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/emissions/types/validations.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func ValidateSdkInt(value cosmosMath.Int) error {
return nil
}

// ValidateSdkIntRepresentingMonetaryAmount checks if the given value is a valid cosmosMath.Int
// ValidateSdkIntRepresentingMonetaryValue checks if the given value is a valid cosmosMath.Int
// according to our needs / standards
func ValidateSdkIntRepresentingMonetaryValue(value cosmosMath.Int) error {
if err := ValidateSdkInt(value); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion x/mint/testutil/emissions_keeper_mocks.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type MockEmissionsKeeperMockRecorder struct {
mock *MockEmissionsKeeper
}

// NewEmissionsEmissionsKeeper creates a new mock instance.
// NewMockEmissionsKeeper creates a new mock instance.
func NewMockEmissionsKeeper(ctrl *gomock.Controller) *MockEmissionsKeeper {
mock := &MockEmissionsKeeper{ctrl: ctrl}
mock.recorder = &MockEmissionsKeeperMockRecorder{mock}
Expand Down
2 changes: 1 addition & 1 deletion x/mint/testutil/mint_keeper_mocks.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type MockMintKeeperMockRecorder struct {
mock *MockMintKeeper
}

// NewMintMintKeeper creates a new mock instance.
// NewMockMintKeeper creates a new mock instance.
func NewMockMintKeeper(ctrl *gomock.Controller) *MockMintKeeper {
mock := &MockMintKeeper{ctrl: ctrl}
mock.recorder = &MockMintKeeperMockRecorder{mock}
Expand Down
Loading