Skip to content

Commit

Permalink
Problem: no concrete type registered for type URL of EthAccount
Browse files Browse the repository at this point in the history
this change should have been included in c0783eb
  • Loading branch information
mmsqe committed Jan 31, 2024
1 parent f76614d commit 83b116a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
* [\#1325](https://github.com/cosmos/relayer/pull/1325) Ignore only file not exist error when loadConfigFile.
* [\#1326](https://github.com/cosmos/relayer/pull/1326) Avoid sending channel close confirm message after channel get closed successfully.
* [\#1364](https://github.com/cosmos/relayer/pull/1364) Include feegrant message when calculate gas.
* [\#](https://github.com/cosmos/relayer/pull/) Avoid no concrete type registered for type URL error of EthAccount.

## v0.9.3

Expand Down
3 changes: 2 additions & 1 deletion relayer/codecs/ethermint/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package ethermint
import (
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/tx"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
"github.com/cosmos/relayer/v2/relayer/ethermint"
Expand All @@ -14,7 +15,7 @@ func RegisterInterfaces(registry codectypes.InterfaceRegistry) {
registry.RegisterImplementations((*cryptotypes.PrivKey)(nil), &PrivKey{})

registry.RegisterImplementations(
(*authtypes.AccountI)(nil),
(*sdk.AccountI)(nil),
&EthAccount{},
)
registry.RegisterImplementations(
Expand Down

0 comments on commit 83b116a

Please sign in to comment.