Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
80e32eb
add `force_set_active_config`
rphmeier Apr 8, 2021
c459ded
add parachains modules to Westend
rphmeier Apr 8, 2021
ed5b2d2
add parachains modules to Kusama runtime
rphmeier Apr 8, 2021
28e3190
use real runtime API impl
rphmeier Apr 8, 2021
f4c704b
add module indices and remove auctions, crowdloan
rphmeier Apr 8, 2021
e67e2ef
add benchmarks
rphmeier Apr 8, 2021
78ab034
remove previous migrations and add host configuration set migration
rphmeier Apr 8, 2021
9d05f14
make compile
shawntabrizi Apr 8, 2021
402543d
Merge branch 'master' into rh-parachains-runtime
shawntabrizi Apr 8, 2021
5386cc1
Add Call Filter for Registrar and Slots except Root
shawntabrizi Apr 8, 2021
c154e4a
cargo run --release --features=runtime-benchmarks -- benchmark --chai…
Apr 9, 2021
11b38cb
Merge remote-tracking branch 'origin/master' into rh-parachains-runtime
Apr 9, 2021
0dcf7b7
cargo run --release --features=runtime-benchmarks -- benchmark --chai…
Apr 9, 2021
d77a6bc
Merge remote-tracking branch 'origin/master' into rh-parachains-runtime
Apr 9, 2021
6679514
Merge remote-tracking branch 'origin/master' into rh-parachains-runtime
Apr 10, 2021
763afc6
Merge branch 'master' into rh-parachains-runtime
shawntabrizi Apr 10, 2021
803caa5
fix build
shawntabrizi Apr 10, 2021
52bcdbd
update `add_benchmark`
shawntabrizi Apr 10, 2021
b9da81e
cargo run --release --features=runtime-benchmarks -- benchmark --chai…
Apr 10, 2021
7b071c0
cargo run --release --features=runtime-benchmarks -- benchmark --chai…
Apr 10, 2021
ff1c2e9
Merge remote-tracking branch 'origin/master' into rh-parachains-runtime
Apr 10, 2021
b2b0d76
cargo run --release --features=runtime-benchmarks -- benchmark --chai…
Apr 10, 2021
38ff27f
cargo run --release --features=runtime-benchmarks -- benchmark --chai…
Apr 10, 2021
0f42d70
fix weights
shawntabrizi Apr 10, 2021
d2e3b56
tweak more constants
rphmeier Apr 23, 2021
f30463a
Merge remote-tracking branch 'origin/master' into rh-parachains-runtime
gavofyork Apr 30, 2021
475766e
Fix up the kusama runtime
gavofyork Apr 30, 2021
b30ae1f
Westend runtime fixups
gavofyork Apr 30, 2021
d3998db
Fix MMR & Beefy for westend
gavofyork Apr 30, 2021
5f85021
Fixes
gavofyork Apr 30, 2021
9f97f01
fix tests
shawntabrizi Apr 30, 2021
07573d6
Update runtime/polkadot/src/constants.rs
gavofyork May 1, 2021
aa33fd4
Update runtime/westend/src/lib.rs
gavofyork May 1, 2021
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
7 changes: 7 additions & 0 deletions Cargo.lock

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

9 changes: 9 additions & 0 deletions runtime/kusama/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,13 @@ frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", b
hex-literal = { version = "0.3.1", optional = true }

runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false }
runtime-parachains = { package = "polkadot-runtime-parachains", path = "../parachains", default-features = false }
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }

xcm = { package = "xcm", path = "../../xcm", default-features = false }
xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default-features = false }

[dev-dependencies]
hex-literal = "0.3.1"
libsecp256k1 = "0.3.5"
Expand Down Expand Up @@ -154,10 +159,14 @@ std = [
"babe-primitives/std",
"sp-session/std",
"runtime-common/std",
"runtime-parachains/std",
"frame-try-runtime/std",
"sp-npos-elections/std",
"beefy-primitives/std",
"pallet-mmr-primitives/std",
"xcm/std",
"xcm-executor/std",
"xcm-builder/std",
]
runtime-benchmarks = [
"runtime-common/runtime-benchmarks",
Expand Down
Loading