Skip to content

Commit

Permalink
chore: make lint-fix. (cosmos#5156)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisJim authored Nov 22, 2023
1 parent 34f5798 commit 9e203b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions e2e/tests/wasm/grandpa_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ func (s *GrandpaTestSuite) TestRecoverClient_Succeeds_GrandpaContract() {

// set the trusting period to a value which will still be valid upon client creation, but invalid before the first update
// the contract uses 1600s as the unbonding period with the trusting period evaluating to (unbonding period / 3)
var modifiedTrustingPeriod = (1600 * time.Second) / 3
modifiedTrustingPeriod := (1600 * time.Second) / 3

chainA, chainB := s.GetGrandpaTestChains()

Expand Down Expand Up @@ -449,7 +449,7 @@ func (s *GrandpaTestSuite) TestRecoverClient_Succeeds_GrandpaContract() {
// wait the bad trusting period
time.Sleep(modifiedTrustingPeriod)

// create client pair with substitue
// create client pair with substitute
substituteClientID := clienttypes.FormatClientIdentifier(ibcexported.Wasm, 1)
s.SetupClients(ctx, r, ibc.DefaultClientOpts())

Expand Down
2 changes: 1 addition & 1 deletion modules/capability/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func NewAppModuleBasic(cdc codec.Codec) AppModuleBasic {
}

// Name returns the capability module's name.
func (am AppModuleBasic) Name() string {
func (AppModuleBasic) Name() string {
return types.ModuleName
}

Expand Down

0 comments on commit 9e203b8

Please sign in to comment.