File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package injective
3
3
import (
4
4
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
5
5
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
6
+ "github.com/cosmos/cosmos-sdk/types"
6
7
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
7
8
)
8
9
@@ -20,10 +21,10 @@ func RegisterInterfaces(registry codectypes.InterfaceRegistry) {
20
21
registry .RegisterImplementations ((* cryptotypes .PubKey )(nil ), & PubKey {})
21
22
registry .RegisterImplementations ((* cryptotypes .PrivKey )(nil ), & PrivKey {})
22
23
23
- registry .RegisterInterface ("injective.types.v1beta1.EthAccount" , (* authtypes .AccountI )(nil ))
24
+ registry .RegisterInterface ("injective.types.v1beta1.EthAccount" , (* types .AccountI )(nil ))
24
25
25
26
registry .RegisterImplementations (
26
- (* authtypes .AccountI )(nil ),
27
+ (* types .AccountI )(nil ),
27
28
& EthAccount {},
28
29
)
29
30
You can’t perform that action at this time.
0 commit comments