Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
30 changes: 30 additions & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@ members = [
"substrate/frame/collective",
"substrate/frame/contracts",
"substrate/frame/contracts/fixtures",
"substrate/frame/coretime-market",
"substrate/frame/contracts/mock-network",
"substrate/frame/contracts/proc-macro",
"substrate/frame/contracts/uapi",
Expand Down Expand Up @@ -500,6 +501,7 @@ members = [
"substrate/primitives/consensus/slots",
"substrate/primitives/core",
"substrate/primitives/core/fuzz",
"substrate/primitives/coretime",
"substrate/primitives/crypto/ec-utils",
"substrate/primitives/crypto/hashing",
"substrate/primitives/crypto/hashing/proc-macro",
Expand Down Expand Up @@ -968,6 +970,7 @@ pallet-bridge-messages = { path = "bridges/modules/messages", default-features =
pallet-bridge-parachains = { path = "bridges/modules/parachains", default-features = false }
pallet-bridge-relayers = { path = "bridges/modules/relayers", default-features = false }
pallet-broker = { path = "substrate/frame/broker", default-features = false }
pallet-coretime-market = { path = "substrate/frame/coretime-market", default-features = false }
pallet-child-bounties = { path = "substrate/frame/child-bounties", default-features = false }
pallet-collator-selection = { path = "cumulus/pallets/collator-selection", default-features = false }
pallet-collective = { path = "substrate/frame/collective", default-features = false }
Expand Down Expand Up @@ -1342,6 +1345,7 @@ sp-consensus-grandpa = { path = "substrate/primitives/consensus/grandpa", defaul
sp-consensus-pow = { path = "substrate/primitives/consensus/pow", default-features = false }
sp-consensus-sassafras = { path = "substrate/primitives/consensus/sassafras", default-features = false }
sp-consensus-slots = { path = "substrate/primitives/consensus/slots", default-features = false }
sp-coretime = { path = "substrate/primitives/coretime", default-features = false }
sp-core = { path = "substrate/primitives/core", default-features = false }
sp-core-hashing = { default-features = false, path = "substrate/deprecated/hashing" }
sp-core-hashing-proc-macro = { default-features = false, path = "substrate/deprecated/hashing/proc-macro" }
Expand Down
2 changes: 1 addition & 1 deletion polkadot/zombienet-sdk-tests/tests/smoke/coretime_smoke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ fn create_configure_broker_call(para_id: u32) -> DynamicPayload {
};

let start_sales_call = value! {
Broker(start_sales { end_price: 1u128, extra_cores: 0u16 })
Broker(start_sales { reserve_price: 1u128, extra_cores: 0u16 })
};

let calls = vec![
Expand Down
4 changes: 4 additions & 0 deletions substrate/frame/broker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ scale-info = { features = ["derive"], workspace = true }
sp-api = { workspace = true }
sp-arithmetic = { workspace = true }
sp-core = { workspace = true }
sp-coretime = { workspace = true }
sp-runtime = { workspace = true }

[dev-dependencies]
pallet-coretime-market = { workspace = true, default-features = true }
pretty_assertions = { workspace = true }
sp-io = { workspace = true, default-features = true }
sp-tracing = { workspace = true, default-features = true }
Expand All @@ -45,13 +47,15 @@ std = [
"sp-api/std",
"sp-arithmetic/std",
"sp-core/std",
"sp-coretime/std",
"sp-io/std",
"sp-runtime/std",
]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-coretime/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
try-runtime = [
Expand Down
Loading
Loading