diff --git a/Dockerfile.tests b/Dockerfile.tests index 2d50e54b4..b591c5cb8 100644 --- a/Dockerfile.tests +++ b/Dockerfile.tests @@ -8,13 +8,6 @@ WORKDIR /cerenetwork COPY . /cerenetwork # ===== SECOND STAGE ====== -FROM $ECR_REGISTRY/ddc-smart-contract:$DDC_SMART_CONTRACT_VERSION as ddc-smart-contract - -FROM builder -# Copy smart-contract artifacts (ddc.wasm and metadata.json) -COPY --from=ddc-smart-contract /ddc-smart-contract/artifacts/ddc.wasm /cerenetwork/pallets/ddc-metrics-offchain-worker/src/tests/test_data/ -COPY --from=ddc-smart-contract /ddc-smart-contract/artifacts/metadata.json /cerenetwork/pallets/ddc-metrics-offchain-worker/src/tests/test_data/ - RUN apt-get update && \ apt-get upgrade -y && \ apt-get install -y cmake pkg-config libssl-dev git clang unzip @@ -32,4 +25,3 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y && \ export PATH=$PATH:$HOME/.cargo/bin && \ scripts/init.sh && \ TRYBUILD=overwrite cargo test --workspace --locked --release --verbose --features runtime-benchmarks --manifest-path node/cli/Cargo.toml - diff --git a/runtime/cere-dev/src/lib.rs b/runtime/cere-dev/src/lib.rs index 2082e8acb..1e0b38ea1 100644 --- a/runtime/cere-dev/src/lib.rs +++ b/runtime/cere-dev/src/lib.rs @@ -149,7 +149,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // and set impl_version to 0. If only runtime // implementation changes and behavior does not, then leave spec_version as // is and increment impl_version. - spec_version: 54119, + spec_version: 54120, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 19, diff --git a/runtime/cere/src/lib.rs b/runtime/cere/src/lib.rs index 73e764bed..1fe8807cf 100644 --- a/runtime/cere/src/lib.rs +++ b/runtime/cere/src/lib.rs @@ -143,7 +143,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // and set impl_version to 0. If only runtime // implementation changes and behavior does not, then leave spec_version as // is and increment impl_version. - spec_version: 54119, + spec_version: 54120, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 19,