Skip to content

Commit

Permalink
Fix a line that was missed when renaming. (#3174)
Browse files Browse the repository at this point in the history
## 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)
  • Loading branch information
afck authored Jan 23, 2025
1 parent 238b58d commit 1895dc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linera-core/src/unit_tests/worker_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3553,7 +3553,7 @@ where
let proposal = make_child_block(&change_ownership_value)
.into_proposal_with_round(&KeyPair::generate(), Round::MultiLeader(0));
let (executed_block, _) = worker
.stage_block_execution(proposal.content.proposal.clone())
.stage_block_execution(proposal.content.block.clone())
.await?;
let value = Hashed::new(ConfirmedBlock::new(executed_block));
let (response, _) = worker.handle_block_proposal(proposal).await?;
Expand Down

0 comments on commit 1895dc5

Please sign in to comment.