Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ stages:

build-production-wasm:
image:
name: paritytech/srtool:1.75.0
name: paritytech/srtool:1.81.0
entrypoint: [""]
stage: build
parallel:
Expand Down
7 changes: 3 additions & 4 deletions nodes/parachain/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ use sc_network_sync::SyncingService;
use sc_service::{Configuration, TFullBackend, TFullClient, TaskManager};
use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerHandle};
use sp_api::ConstructRuntimeApi;
use sp_io::SubstrateHostFunctions;
use sp_keystore::KeystorePtr;
use sp_runtime::traits::BlakeTwo256;
use std::{sync::Arc, time::Duration};
Expand All @@ -55,11 +54,11 @@ type Header = sp_runtime::generic::Header<BlockNumber, sp_runtime::traits::Blake
pub(crate) type Block = sp_runtime::generic::Block<Header, sp_runtime::OpaqueExtrinsic>;

#[cfg(not(feature = "runtime-benchmarks"))]
type HostFunctions = SubstrateHostFunctions;
type HostFunctions = cumulus_client_service::ParachainHostFunctions;

#[cfg(feature = "runtime-benchmarks")]
type HostFunctions = (
SubstrateHostFunctions,
cumulus_client_service::storage_proof_size::HostFunctions,
cumulus_client_service::ParachainHostFunctions,
frame_benchmarking::benchmarking::HostFunctions,
);

Expand Down
2 changes: 1 addition & 1 deletion zombienet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ In case the relaychain version should be updated to reflect what is deployed on
1. Head to the [paseo-network/runtimes repo](https://github.com/paseo-network/runtimes)
2. Checkout the right tag corresponding to the new version to deploy in the Zombienet environment, e.g., [`v1.3.1`](https://github.com/paseo-network/runtimes/tree/v1.3.1)
3. Run `cargo run --release --features fast-runtime -p chain-spec-generator -- paseo-local > out.json`, which saves the new chainspec into a temporary `out.json` file
4. Move the file into `runtimes/peregrine` and rename it to `paseo-local-fast-<version_tag>-<commit_sha>.json`, e.g., `polkadot-local-fast-v1.3.1-e1fd37c`
4. Move the file into `runtimes/peregrine` and rename it to `paseo-local-fast-<version_tag>-<commit_sha>.json`, e.g., `paseo-local-fast-v1.3.1-e1fd37c`
5. Update the `peregrine/.env` file to set the right Docker image tag for the `RELAY_IMAGE` variable
2 changes: 1 addition & 1 deletion zombienet/runtimes/peregrine/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
RELAY_IMAGE=parity/polkadot:v1.15.2
RELAY_RPC=50001
PARA_IMAGE=kiltprotocol/kilt-node:1.14.3
PARA_IMAGE=kiltprotocol/kilt-node:1.15.2
PARA_RPC=50010
216 changes: 216 additions & 0 deletions zombienet/runtimes/peregrine/paseo-local-fast-v1.4.3-3de4702.json

Large diffs are not rendered by default.

Loading