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/cadance/keeper/querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func NewQuerier(k Keeper) Querier {
}
}

// ContractModules returns contract addresses which are using the cadance
// CadanceContracts returns contract addresses which are using the cadance
func (q Querier) CadanceContracts(stdCtx context.Context, req *types.QueryCadanceContracts) (*types.QueryCadanceContractsResponse, error) {
ctx := sdk.UnwrapSDKContext(stdCtx)

Expand Down
4 changes: 2 additions & 2 deletions x/smart-account/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ func (s *AuthenticatorSuite) TestKeyRotation() {
s.Require().Error(err, "Should fail as authenticator was removed from store")
}

// TestingAuthenticatorState tests that the Authenticate, Track and ConfirmExecution functions work correctly,
// TestAuthenticatorState tests that the Authenticate, Track and ConfirmExecution functions work correctly,
// it increments a test authenticator state by 1 on each successful pass through the Ante and Post handlers.
func (s *AuthenticatorSuite) TestAuthenticatorState() {
successSendMsg := &banktypes.MsgSend{
Expand Down Expand Up @@ -322,7 +322,7 @@ func (s *AuthenticatorSuite) TestAuthenticatorMultiMsg() {
s.Require().Equal(int64(2_000), maxAmount.GetAmount(s.chainA.GetContext()).Int64())
}

// TestingAuthenticatorGas tests the gas limit panics when not reduced, then tests
// TestAuthenticatorGas tests the gas limit panics when not reduced, then tests
// that the gas limit is reset after the fee payer is authenticated.
func (s *AuthenticatorSuite) TestAuthenticatorGas() {
sendFromAcc1 := &banktypes.MsgSend{
Expand Down
2 changes: 1 addition & 1 deletion x/smart-account/post/post_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func (s *AuthenticatorPostSuite) TestAuthenticatorPostHandlerSuccess() {
s.Require().NoError(err, "Failed but should have passed as ConfirmExecution passed")
}

// TestAutenticatorPostHandlerReturnEarly tests that the post handler fails early on IsCircuitBreakActive
// TestAuthenticatorPostHandlerReturnEarly tests that the post handler fails early on IsCircuitBreakActive
// the transaction should pass through the normal flow.
func (s *AuthenticatorPostSuite) TestAuthenticatorPostHandlerReturnEarly() {
bitsongToken := "bitsong"
Expand Down