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

chore: upgrade polkadot to v0.9.36 #446

Merged
merged 11 commits into from
Jan 20, 2023
3 changes: 2 additions & 1 deletion runtimes/clone/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -697,10 +697,11 @@ impl_runtime_apis! {

fn execute_block(block: Block, state_root_check: bool, sig_check: bool, select: frame_try_runtime::TryStateSelect) -> Weight {
log::info!(
target: "runtime::clone", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sanity-checks: {:?}",
target: "runtime::spiritnet", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sig check: {:?} / sanity-checks: {:?}",
ntn-x2 marked this conversation as resolved.
Show resolved Hide resolved
block.header.number,
block.header.hash(),
state_root_check,
sig_check,
select,
);
Executive::try_execute_block(block, state_root_check, sig_check, select).expect("try_execute_block failed")
Expand Down
4 changes: 2 additions & 2 deletions runtimes/peregrine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1418,11 +1418,11 @@ impl_runtime_apis! {

fn execute_block(block: Block, state_root_check: bool, signature_check: bool, select: frame_try_runtime::TryStateSelect) -> Weight {
log::info!(
target: "runtime::peregrine", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / signature checks: {:?} sanity-checks: {:?}",
target: "runtime::spiritnet", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sig check: {:?} / sanity-checks: {:?}",
ntn-x2 marked this conversation as resolved.
Show resolved Hide resolved
block.header.number,
block.header.hash(),
state_root_check,
signature_check,
sig_check,
select,
);
Executive::try_execute_block(block, state_root_check, signature_check, select).expect("try_execute_block failed")
Expand Down
3 changes: 2 additions & 1 deletion runtimes/spiritnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1412,10 +1412,11 @@ impl_runtime_apis! {

fn execute_block(block: Block, state_root_check: bool, sig_check: bool, select: frame_try_runtime::TryStateSelect) -> Weight {
log::info!(
target: "runtime::spiritnet", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sanity-checks: {:?}",
target: "runtime::spiritnet", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sig check: {:?} / sanity-checks: {:?}",
block.header.number,
block.header.hash(),
state_root_check,
sig_check,
select,
);
Executive::try_execute_block(block, state_root_check, sig_check, select).expect("try_execute_block failed")
Expand Down
3 changes: 2 additions & 1 deletion runtimes/standalone/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1131,10 +1131,11 @@ impl_runtime_apis! {

fn execute_block(block: Block, state_root_check: bool, sig_check: bool, select: frame_try_runtime::TryStateSelect) -> Weight {
log::info!(
target: "runtime::mashnet_node_standalone", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sanity-checks: {:?}",
target: "runtime::spiritnet", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sig check: {:?} / sanity-checks: {:?}",
ntn-x2 marked this conversation as resolved.
Show resolved Hide resolved
block.header.number,
block.header.hash(),
state_root_check,
sig_check,
select,
);
Executive::try_execute_block(block, state_root_check, sig_check, select).expect("try_execute_block failed")
Expand Down