-
Notifications
You must be signed in to change notification settings - Fork 407
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
Add UpdateInstantiateConfig command #1121
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1121 +/- ##
==========================================
- Coverage 57.51% 57.22% -0.29%
==========================================
Files 53 53
Lines 7289 7350 +61
==========================================
+ Hits 4192 4206 +14
- Misses 2801 2849 +48
+ Partials 296 295 -1
|
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.
This looks great already. Please add the new message type to the codec.go. Otherwise it can not be used.
proto/cosmwasm/wasm/v1/tx.proto
Outdated
message MsgUpdateInstantiateConfig { | ||
// Sender is the that actor that signed the messages | ||
string sender = 1; | ||
// CodeID references the new WASM code |
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.
nit:
// CodeID references the new WASM code | |
// CodeID references the stored WASM code |
0567f4a
to
453b63b
Compare
SonarCloud Quality Gate failed. 0 Bugs No Coverage information |
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.
Thanks for the updates. Good work!🌷
require.NoError(t, err) | ||
}) | ||
} | ||
} |
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.
👍 good test
Resolves #843