Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wangminqi committed Jan 2, 2025
1 parent a8933f1 commit 13fd353
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions parachain/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions parachain/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ xcm = { workspace = true }
frame-benchmarking = { workspace = true }
frame-benchmarking-cli = { workspace = true }
frame-system-rpc-runtime-api = { workspace = true }
frame-try-runtime = { workspace = true, optional = true }

core-primitives = { workspace = true, features = ["std"] }
litentry-parachain-runtime = { workspace = true, features = ["std"] }
Expand Down Expand Up @@ -148,5 +149,6 @@ try-runtime = [
"polkadot-service/try-runtime",
"runtime-common/try-runtime",
"sp-runtime/try-runtime",
"frame-try-runtime",
]
std = []
1 change: 0 additions & 1 deletion parachain/runtime/litentry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,6 @@ try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
"frame-try-runtime",
"frame-try-runtime?/try-runtime",
"hex",
"pallet-account-fix/try-runtime",
"pallet-asset-manager/try-runtime",
Expand Down
2 changes: 1 addition & 1 deletion parachain/runtime/litentry/src/migration/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ where
fn post_upgrade(_state: Vec<u8>) -> Result<(), sp_runtime::DispatchError> {
let one: BlockNumberFor<T> = 3067200u32.into();
let two: BlockNumberFor<T> = 2995200u32.into();
for (when, vec_schedule) in <Agenda<T>>::iter() {
for (when, _vec_schedule) in <Agenda<T>>::iter() {
assert!(when != one && when != two, "Old schedule still exists");
}

Expand Down
1 change: 0 additions & 1 deletion parachain/runtime/paseo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,6 @@ try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
"frame-try-runtime",
"frame-try-runtime?/try-runtime",
"pallet-account-fix/try-runtime",
"pallet-asset-manager/try-runtime",
"pallet-assets-handler/try-runtime",
Expand Down

0 comments on commit 13fd353

Please sign in to comment.