-
Notifications
You must be signed in to change notification settings - Fork 120
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
Release v4.0.0-rc #1415
Release v4.0.0-rc #1415
Conversation
@@ -287,7 +287,7 @@ mod tests { | |||
vec!["i32"].into_iter().map(AsRef::as_ref), | |||
)) | |||
.done()]) | |||
.returns(ReturnTypeSpec::new(None)) | |||
.returns(ReturnTypeSpec::new(TypeSpec::default())) |
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.
The default value is:
ReturnTypeSpec::new(
TypeSpec::with_name_str::<ink_primitives::ConstructorResult<()>>("ink_primitives::ConstructorResult")
)
Not sure if ink_primitives
is imported.
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.
It is not imported; that is why I used the default.
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.
LGTM
let return_ty = msg_spec.return_type().ret_type(); | ||
self.decode(return_ty.ty().id, data) |
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.
Need to double check that this still works by doing a cargo contract call
on a message with a return value
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.
Need to update readme to include contract-analyzer
in the release instructions.
I think we need to do it in a separate commit since you've already published crates. It's better to have a tagged commit that reflects the published crates. Please let me know what you think. |
The tagged commit will be from the merge commit into |
Added
Environment
types against the node - #1377INK_STATIC_BUFFER_SIZE
env var - #1310verify
command - #1306--binary
flag forinfo
command - #1311--all
flag forinfo
command - #1319info
command - #1329Storage Total Deposit
toinfo
command output - #1347Changed
subxt
to0.32.0
- #1352scale
andscale-info
versions - #1370ink
to5.0.0-rc
- #1415Fixed
info
command - #1330