Skip to content

Commit

Permalink
feat(consensus): calculate the executable_transaction in consensus_co…
Browse files Browse the repository at this point in the history
…ntext
  • Loading branch information
Yael-Starkware committed Dec 18, 2024
1 parent aff6e32 commit ae5a26d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ impl SequencerConsensusContext {
let notify_clone = Arc::clone(&notify);
let chain_id = self.chain_id.clone();

let handle = tokio::spawn(
let handle = tokio::spawn({
async move {
let validate_fut = stream_validate_proposal(
height,
Expand All @@ -417,8 +417,8 @@ impl SequencerConsensusContext {
}
}
}
.instrument(debug_span!("consensus_validate_proposal")),
);
.instrument(debug_span!("consensus_validate_proposal"))
});
self.active_proposal = Some((notify, handle));
}

Expand Down

0 comments on commit ae5a26d

Please sign in to comment.