Skip to content

Commit

Permalink
lint + test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
testinginprod committed Oct 17, 2024
1 parent 9dc5acf commit 5696991
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
14 changes: 0 additions & 14 deletions tests/systemtests/auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,6 @@ func TestAuthSignAndBroadcastTxCmd(t *testing.T) {
sendAmount := transferAmount + newAmount
fees := feeAmount * 2

// TODO: remove below block code once v2 supports multi messages
// ref: https://github.com/cosmos/cosmos-sdk/issues/22215
if isV2() {
sendAmount = transferAmount
fees = feeAmount
}

testSignTxBroadcast(t, cli, signBatchCmd, "sign-batch tx", val1Addr, val2Addr, sendAmount, fees)
}

Expand Down Expand Up @@ -304,13 +297,6 @@ func TestAuthMultisigTxCmds(t *testing.T) {
sendAmount := transferAmount * 2
fees := feeAmount * 2

// TODO: remove below block code once v2 supports multi messages
// ref: https://github.com/cosmos/cosmos-sdk/issues/22215
if isV2() {
sendAmount = transferAmount
fees = feeAmount
}

testMultisigTxBroadcast(t, cli, multiSigTxInput{
"multisign-batch",
multiAddr,
Expand Down
2 changes: 1 addition & 1 deletion x/accounts/defaults/base/account.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"errors"
"fmt"

"cosmossdk.io/core/transaction"
gogotypes "github.com/cosmos/gogoproto/types/any"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/known/anypb"
Expand All @@ -15,6 +14,7 @@ import (
"cosmossdk.io/collections"
"cosmossdk.io/core/address"
"cosmossdk.io/core/header"
"cosmossdk.io/core/transaction"
"cosmossdk.io/x/accounts/accountstd"
v1 "cosmossdk.io/x/accounts/defaults/base/v1"
aa_interface_v1 "cosmossdk.io/x/accounts/interfaces/account_abstraction/v1"
Expand Down

0 comments on commit 5696991

Please sign in to comment.