Skip to content

Commit

Permalink
fix: resolve conflicts (#1016)
Browse files Browse the repository at this point in the history
  • Loading branch information
madrezaz authored Mar 11, 2024
1 parent 30bc2b7 commit 4d76fc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions chain/cosmos/account_retriever.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

var (
_ client.Account = sdk.AccountI(nil)
_ client.Account = authtypes.AccountI(nil)
_ client.AccountRetriever = AccountRetriever{}
)

Expand Down Expand Up @@ -59,7 +59,7 @@ func (ar AccountRetriever) GetAccountWithHeight(clientCtx client.Context, addr s
return nil, 0, fmt.Errorf("failed to parse block height: %w", err)
}

var acc sdk.AccountI
var acc authtypes.AccountI
if err := clientCtx.InterfaceRegistry.UnpackAny(res.Account, &acc); err != nil {
return nil, 0, err
}
Expand Down
7 changes: 0 additions & 7 deletions chain/cosmos/broadcaster.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,9 @@ import (
"github.com/cosmos/cosmos-sdk/crypto/keyring"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/tx/signing"
<<<<<<< HEAD
authTx "github.com/cosmos/cosmos-sdk/x/auth/tx"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
"github.com/strangelove-ventures/interchaintest/v7/internal/dockerutil"
"github.com/strangelove-ventures/interchaintest/v7/testutil"
=======
authtx "github.com/cosmos/cosmos-sdk/x/auth/tx"
"github.com/strangelove-ventures/interchaintest/v8/internal/dockerutil"
"github.com/strangelove-ventures/interchaintest/v8/testutil"
>>>>>>> 1d1b837 (feat: replace broadcaster's account retriever to use chain's bech32 prefix when converting AccAddress to string (#1009))
)

type ClientContextOpt func(clientContext client.Context) client.Context
Expand Down

0 comments on commit 4d76fc1

Please sign in to comment.