From da8cf65c108299dbbc257f70216425ccf142241d Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Wed, 25 Feb 2026 01:54:46 +0300 Subject: [PATCH] fix(ci): enable jsonrpsee feature for pezkuwi-subxt in zombienet-orchestrator The workspace defines pezkuwi-subxt with default-features = false, which excludes the jsonrpsee feature. The zombienet-orchestrator uses OnlineClient::from_url and RpcClient::from_url which are gated behind the jsonrpsee feature, causing a compilation failure. --- vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml b/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml index 2652ddf5..5b72aec3 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml +++ b/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml @@ -23,7 +23,7 @@ hex = { workspace = true } libp2p = { workspace = true } libsecp256k1 = { workspace = true } multiaddr = { workspace = true } -pezkuwi-subxt = { workspace = true, features = ["native"] } +pezkuwi-subxt = { workspace = true, features = ["jsonrpsee", "native"] } pezkuwi-subxt-signer = { workspace = true } pezsc-chain-spec = { workspace = true } pezsp-core = { workspace = true }