Skip to content

Commit

Permalink
Fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszrzasik committed Dec 12, 2024
1 parent 718b0df commit 766c718
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/task-impls/src/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -678,8 +678,7 @@ impl<
let epoch = self.epoch.u64();
let mem = self.membership.clone();
spawn(async move {
net.update_view::<TYPES>(keep_view, epoch, &mem)
.await;
net.update_view::<TYPES>(*keep_view, epoch, &mem).await;
});
None
}
Expand Down

0 comments on commit 766c718

Please sign in to comment.