Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[store] ChainStoreUpdate remove dependency on reading tentatively updated values #12162

Draft
wants to merge 14 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test fix
  • Loading branch information
shreyan-gupta committed Sep 27, 2024
commit 3b6c66b644d4ddb4ec3a4cfb47521349e77df106
2 changes: 1 addition & 1 deletion integration-tests/src/tests/client/process_blocks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ pub(crate) fn produce_blocks_from_height_with_protocol_version(
let next_height = height + blocks_number;
for i in height..next_height {
let mut block = env.clients[0].produce_block(i).unwrap().unwrap();
block.mut_header().set_latest_protocol_version(protocol_version);
set_block_protocol_version(&mut block, env.get_client_id(0), protocol_version);
env.process_block(0, block.clone(), Provenance::PRODUCED);
for j in 1..env.clients.len() {
env.process_block(j, block.clone(), Provenance::NONE);
Expand Down
Loading