Skip to content

Commit 0fcf2f0

Browse files
committed
MockValidationDataInherentDataProvider moved to a new crate.
1 parent 3c15d0b commit 0fcf2f0

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ cumulus-client-collator = { branch = "tuxedo-v1.6.0", git = "https://github.com/
112112
cumulus-client-consensus-aura = { branch = "tuxedo-v1.6.0", git = "https://github.com/off-narrative-labs/polkadot-sdk" }
113113
cumulus-client-consensus-common = { branch = "tuxedo-v1.6.0", git = "https://github.com/off-narrative-labs/polkadot-sdk" }
114114
cumulus-client-consensus-proposer = { branch = "tuxedo-v1.6.0", git = "https://github.com/off-narrative-labs/polkadot-sdk" }
115+
cumulus-client-parachain-inherent = { branch = "tuxedo-v1.6.0", default_features = false, git = "https://github.com/off-narrative-labs/polkadot-sdk" }
115116
cumulus-client-service = { branch = "tuxedo-v1.6.0", git = "https://github.com/off-narrative-labs/polkadot-sdk" }
116117
cumulus-primitives-core = { branch = "tuxedo-v1.6.0", default_features = false, git = "https://github.com/off-narrative-labs/polkadot-sdk" }
117118
cumulus-primitives-parachain-inherent = { branch = "tuxedo-v1.6.0", default_features = false, git = "https://github.com/off-narrative-labs/polkadot-sdk" }

parachain-node/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ cumulus-client-collator = { workspace = true }
5656
cumulus-client-consensus-aura = { workspace = true }
5757
cumulus-client-consensus-common = { workspace = true }
5858
cumulus-client-consensus-proposer = { workspace = true }
59+
cumulus-client-parachain-inherent = { workspace = true }
5960
cumulus-client-service = { workspace = true }
6061
cumulus-primitives-core = { workspace = true }
61-
cumulus-primitives-parachain-inherent = { workspace = true }
6262
cumulus-relay-chain-interface = { workspace = true }
6363
polkadot-cli = { features = [ "rococo-native" ], default-features = false, workspace = true }
6464
polkadot-primitives = { workspace = true }

parachain-node/src/dev_service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use sp_runtime::traits::Header as _;
1212
use std::{sync::Arc, time::Duration};
1313
use tuxedo_core::{genesis::TuxedoGenesisBlockBuilder, types::OpaqueBlock as Block};
1414

15-
use cumulus_primitives_parachain_inherent::MockValidationDataInherentDataProvider;
15+
use cumulus_client_parachain_inherent::MockValidationDataInherentDataProvider;
1616

1717
// Our native executor instance.
1818
pub struct ExecutorDispatch;

0 commit comments

Comments
 (0)