-
Notifications
You must be signed in to change notification settings - Fork 71
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
Reflect changes in chain-extensions API #142
Conversation
versioned_docs/version-4.0.0-alpha.1/macros-attributes/chain-extension.md
Outdated
Show resolved
Hide resolved
@@ -95,7 +89,7 @@ pub trait MyChainExtension { | |||
|
|||
Default value: `true` | |||
|
|||
By default all chain extension methods return a `Result<T, E>` where `E: From<Self::ErrorCode>`. | |||
By default all chain extension methods should return a `Result<T, E>` where `E: From<Self::ErrorCode>`. |
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.
Can you clarify what the implication is if they don't?
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.
Can you clarify what the implication is if they don't?
I think lines 106-107 states the implication
versioned_docs/version-4.0.0-alpha.1/macros-attributes/chain-extension.md
Outdated
Show resolved
Hide resolved
versioned_docs/version-4.0.0-alpha.1/macros-attributes/chain-extension.md
Outdated
Show resolved
Hide resolved
…xtension.md Co-authored-by: Michael Müller <mich@elmueller.net>
…xtension.md Co-authored-by: Michael Müller <mich@elmueller.net>
…xtension.md Co-authored-by: Michael Müller <mich@elmueller.net>
This PR update chain-extensions page to reflect breaking changes introduced by use-ink/ink#1569