test-staking-e2e: Add to main Cargo.toml. (#14062)

This ensures that it is actually tested as part of the CI. There is also no need to have it separate.
This commit is contained in:
Bastian Köcher
2023-05-03 15:15:49 +02:00
committed by GitHub
parent d3b3a46d27
commit 13cab3a4b7
6 changed files with 32 additions and 3613 deletions
File diff suppressed because it is too large Load Diff
@@ -12,8 +12,6 @@ publish = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[workspace]
[dev-dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
scale-info = { version = "2.0.1", features = ["derive"] }
@@ -34,8 +34,8 @@ macro_rules! log {
log::$level!(
target: crate::LOG_TARGET,
concat!("🛠️ ", $patter) $(, $values)*
)
};
)
};
}
fn log_current_time() {
@@ -125,6 +125,10 @@ impl pallet_balances::Config for Runtime {
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type WeightInfo = ();
type HoldIdentifier = ();
type FreezeIdentifier = ();
type MaxHolds = traits::ConstU32<1>;
type MaxFreezes = traits::ConstU32<1>;
}
impl pallet_timestamp::Config for Runtime {