Skip to content

Commit 1895dc5

Browse files
authored
Fix a line that was missed when renaming. (#3174)
## Motivation #3168 and #3169 were merged without rebasing on each other, breaking the build. ## Proposal Fix the broken line. ## Test Plan With this and #3171 CI should work again. ## Release Plan - Nothing to do / These changes follow the usual release cycle. ## Links - [reviewer checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
1 parent 238b58d commit 1895dc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linera-core/src/unit_tests/worker_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3553,7 +3553,7 @@ where
35533553
let proposal = make_child_block(&change_ownership_value)
35543554
.into_proposal_with_round(&KeyPair::generate(), Round::MultiLeader(0));
35553555
let (executed_block, _) = worker
3556-
.stage_block_execution(proposal.content.proposal.clone())
3556+
.stage_block_execution(proposal.content.block.clone())
35573557
.await?;
35583558
let value = Hashed::new(ConfirmedBlock::new(executed_block));
35593559
let (response, _) = worker.handle_block_proposal(proposal).await?;

0 commit comments

Comments
 (0)