Skip to content

Commit 28fbac1

Browse files
wasm !send
1 parent 3576b4a commit 28fbac1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ic-utils/src/interfaces/management_canister/builders.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ use crate::{
1111
use async_trait::async_trait;
1212
use candid::utils::ArgumentEncoder;
1313
use candid::{CandidType, Deserialize, Nat};
14-
use futures_util::future::BoxFuture;
1514
use futures_util::{
1615
future::ready,
1716
stream::{self, FuturesUnordered},
@@ -750,7 +749,7 @@ impl<'agent: 'canister, 'canister: 'builder, 'builder> InstallBuilder<'agent, 'c
750749
to_upload_chunks.iter()
751750
.filter_map(|(hash, value)| (!existing_chunks.contains(hash)).then_some((*hash, *value)))
752751
.collect(),
753-
Box::pin(ready(Ok(()))) as BoxFuture<'_, _>,
752+
Box::pin(ready(Ok(()))) as _,
754753
)
755754
} else {
756755
(to_upload_chunks.clone(), self.canister.clear_chunk_store(&self.canister_id).call_and_wait())

0 commit comments

Comments
 (0)