Skip to content

Commit

Permalink
using LARGE_WASM_LANE_ID constant in block_validator/tests.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Zajkowski committed Dec 16, 2024
1 parent 8fbf387 commit c7ac144
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node/src/components/block_validator/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ use crate::{
},
effect::requests::StorageRequest,
reactor::{EventQueueHandle, QueueKind, Scheduler},
testing::LARGE_WASM_LANE_ID,
types::{BlockPayload, ValidatorMatrix},
utils::{self, Loadable},
};
Expand Down Expand Up @@ -152,7 +153,7 @@ pub(super) fn new_proposed_block_with_cited_signatures(
INSTALL_UPGRADE_LANE_ID,
install_upgrade.into_iter().collect(),
);
ret.insert(3, standard.into_iter().collect());
ret.insert(LARGE_WASM_LANE_ID, standard.into_iter().collect());
ret
};
let block_payload = BlockPayload::new(transactions, vec![], cited_signatures, true, 1u8);
Expand Down

0 comments on commit c7ac144

Please sign in to comment.