You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Assume that `CallBuilder`s return a `MessageResult`
* Add `try_*` variants to `CallBuilder`
* Add doc test showing how to handle `LangError` from `build_call`
* Remove TODO related to `delegate_call`
* Account for `LangError` in E2E tests
* Improve `return_value` error message
* Remove extra `expect` from E2E tests
* Add test for checking that `fire` panics on `LangError`
* Fix spelling
* Remove extra `unwrap` in more E2E tests
* Fix ERC-1155 example
* Fix `invoke_contract` doc test
* RustFmt
* Fix `delegator` example
* Update ERC-20 tests
* Indicate that doc test panics in off-chain env
* Forgot some commas 🤦
* Get `Flipper` example compiling again
* Remove more unwraps
* Update UI tests
* Print out `LangError` when panicking after `invoke`
* Bump `scale` to fix UI tests
Copy file name to clipboardExpand all lines: crates/ink/tests/ui/contract/fail/message-input-non-codec.stderr
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -53,11 +53,11 @@ note: required by a bound in `ExecutionInput::<ArgumentList<ArgumentListEnd, Arg
53
53
| T: scale::Encode,
54
54
| ^^^^^^^^^^^^^ required by this bound in `ExecutionInput::<ArgumentList<ArgumentListEnd, ArgumentListEnd>>::push_arg`
55
55
56
-
error[E0599]: the method `fire` exists for struct `ink::ink_env::call::CallBuilder<DefaultEnvironment, Set<Call<DefaultEnvironment>>, Set<ExecutionInput<ArgumentList<ink::ink_env::call::utils::Argument<NonCodecType>, ArgumentList<ArgumentListEnd, ArgumentListEnd>>>>, Set<ReturnType<Result<(), LangError>>>>`, but its trait bounds were not satisfied
56
+
error[E0599]: the method `try_fire` exists for struct `ink::ink_env::call::CallBuilder<DefaultEnvironment, Set<Call<DefaultEnvironment>>, Set<ExecutionInput<ArgumentList<ink::ink_env::call::utils::Argument<NonCodecType>, ArgumentList<ArgumentListEnd, ArgumentListEnd>>>>, Set<ReturnType<()>>>`, but its trait bounds were not satisfied
| ^^^ method cannot be called on `ink::ink_env::call::CallBuilder<DefaultEnvironment, Set<Call<DefaultEnvironment>>, Set<ExecutionInput<ArgumentList<ink::ink_env::call::utils::Argument<NonCodecType>, ArgumentList<ArgumentListEnd, ArgumentListEnd>>>>, Set<ReturnType<Result<(), LangError>>>>` due to unsatisfied trait bounds
60
+
| ^^^ method cannot be called on `ink::ink_env::call::CallBuilder<DefaultEnvironment, Set<Call<DefaultEnvironment>>, Set<ExecutionInput<ArgumentList<ink::ink_env::call::utils::Argument<NonCodecType>, ArgumentList<ArgumentListEnd, ArgumentListEnd>>>>, Set<ReturnType<()>>>` due to unsatisfied trait bounds
0 commit comments