diff --git a/Justfile b/Justfile index 10c2415c4..f88f6e145 100644 --- a/Justfile +++ b/Justfile @@ -12,7 +12,10 @@ build: lint release: lint cargo build --release -testnet: release +release-testnet: lint + cargo build --release --features polka-storage-runtime/testnet + +testnet: release-testnet zombienet -p native spawn zombienet/local-testnet.toml build-parachain-docker: diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 2d0373ff8..12ded1cf1 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -87,7 +87,7 @@ parachain-info = { workspace = true, default-features = false } parachains-common = { workspace = true, default-features = false } [features] -default = ["std", "testnet"] +default = ["std"] std = [ "codec/std", "cumulus-pallet-aura-ext/std",