Skip to content

Commit

Permalink
Problem: no concrete type registered for type URL of EthAccount (#1390)
Browse files Browse the repository at this point in the history
* Problem: no concrete type registered for type URL of EthAccount

this change should have been included in c0783eb

* Update CHANGELOG.md
  • Loading branch information
mmsqe committed Jan 31, 2024
1 parent f76614d commit a9ce8d6
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.
* [\#1390](https://github.com/cosmos/relayer/pull/1390) 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 a9ce8d6

Please sign in to comment.