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

chore: fix some function names in comment #4137

Merged
merged 1 commit into from
Dec 19, 2024
Merged
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 test/util/test_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ func InitialiseTestAppWithGenesis(testApp *app.App, cparams *tmproto.ConsensusPa
return testApp
}

// AddDeterministicValidatorToGenesis adds a set of five validators to the genesis.
// AddDeterministicValidatorsToGenesis adds a set of five validators to the genesis.
func AddDeterministicValidatorsToGenesis(g *genesis.Genesis) error {
for i := range FixedMnemonics {
val := genesis.Validator{
Expand Down
2 changes: 1 addition & 1 deletion x/blobstream/abci_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ func TestHasDataCommitmentInStore(t *testing.T) {
}
}

// TestGetDataCommitment This test will test the data commitment creation
// TestDataCommitmentCreationCatchup This test will test the data commitment creation
// catchup mechanism. It will run `abci.EndBlocker` on all the heights while
// changing the data commitment window in different occasions, to see if at the
// end of the test, the data commitments cover all the needed ranges.
Expand Down
2 changes: 1 addition & 1 deletion x/blobstream/types/msgs.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func (msg MsgRegisterEVMAddress) ValidateBasic() error {
return nil
}

// GetSigner fulfills the sdk.Msg interface. The signer must be the validator address
// GetSigners fulfills the sdk.Msg interface. The signer must be the validator address
func (msg MsgRegisterEVMAddress) GetSigners() []sdk.AccAddress {
valAddr, err := sdk.ValAddressFromBech32(msg.ValidatorAddress)
if err != nil {
Expand Down
Loading