We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
build_call
1 parent ea17ad7 commit 87712b2Copy full SHA for 87712b2
crates/env/src/call/call_builder/mod.rs
@@ -21,10 +21,7 @@ pub use delegate::DelegateCall;
21
use core::marker::PhantomData;
22
23
use ink_primitives::{
24
- abi::{
25
- Ink,
26
- Sol,
27
- },
+ abi::Sol,
28
Address,
29
};
30
@@ -70,7 +67,7 @@ where
70
67
}
71
68
72
69
/// Returns a new [`CallBuilder`] to build up the parameters to a cross-contract call
73
-/// that uses the ink! ABI (SCALE Encoding).
+/// that uses the "default" ABI.
74
///
75
/// # Example
76
@@ -216,7 +213,7 @@ where
216
213
pub fn build_call<E>() -> CallBuilder<
217
214
E,
218
215
Unset<Call>,
219
- Unset<ExecutionInput<EmptyArgumentList<Ink>, Ink>>,
+ Unset<ExecutionInput<EmptyArgumentList<crate::DefaultAbi>, crate::DefaultAbi>>,
220
Unset<ReturnType<()>>,
221
>
222
where
0 commit comments