Skip to content

Commit 87712b2

Browse files
committed
env: Use the "default" for build_call utility
1 parent ea17ad7 commit 87712b2

File tree

1 file changed

+3
-6
lines changed
  • crates/env/src/call/call_builder

1 file changed

+3
-6
lines changed

crates/env/src/call/call_builder/mod.rs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ pub use delegate::DelegateCall;
2121
use core::marker::PhantomData;
2222

2323
use ink_primitives::{
24-
abi::{
25-
Ink,
26-
Sol,
27-
},
24+
abi::Sol,
2825
Address,
2926
};
3027

@@ -70,7 +67,7 @@ where
7067
}
7168

7269
/// Returns a new [`CallBuilder`] to build up the parameters to a cross-contract call
73-
/// that uses the ink! ABI (SCALE Encoding).
70+
/// that uses the "default" ABI.
7471
///
7572
/// # Example
7673
///
@@ -216,7 +213,7 @@ where
216213
pub fn build_call<E>() -> CallBuilder<
217214
E,
218215
Unset<Call>,
219-
Unset<ExecutionInput<EmptyArgumentList<Ink>, Ink>>,
216+
Unset<ExecutionInput<EmptyArgumentList<crate::DefaultAbi>, crate::DefaultAbi>>,
220217
Unset<ReturnType<()>>,
221218
>
222219
where

0 commit comments

Comments
 (0)