-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(axelarnet)!: remove CallContract message type #2215
base: main
Are you sure you want to change the base?
refactor(axelarnet)!: remove CallContract message type #2215
Conversation
ca8b196
to
d79a9df
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2215 +/- ##
==========================================
- Coverage 39.38% 39.35% -0.04%
==========================================
Files 375 375
Lines 37417 37293 -124
==========================================
- Hits 14738 14677 -61
+ Misses 21730 21673 -57
+ Partials 949 943 -6 ☔ View full report in Codecov by Sentry. |
@@ -173,6 +173,7 @@ message RouteMessageRequest { | |||
message RouteMessageResponse {} | |||
|
|||
message CallContractRequest { | |||
option deprecated = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why can't we just remove the type from here?
@@ -32,6 +32,7 @@ func RegisterLegacyMsgInterfaces(registry cdctypes.InterfaceRegistry) { | |||
|
|||
r.RegisterCustomTypeURL((*sdk.Msg)(nil), "/axelar.evm.v1beta1.CreateTransferOwnershipRequest", &evmtypes.CreateTransferOwnershipRequest{}) | |||
r.RegisterCustomTypeURL((*sdk.Msg)(nil), "/axelar.axelarnet.v1beta1.RegisterIBCPathRequest", &axelarnettypes.RegisterIBCPathRequest{}) | |||
r.RegisterCustomTypeURL((*sdk.Msg)(nil), "/axelar.axelarnet.v1beta1.CallContractRequest", &axelarnettypes.CallContractRequest{}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need to add this?
Description
Todos
Steps to Test
Expected Behaviour
Other Notes