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.
This commit is contained in:
@@ -23,7 +23,7 @@ hex = { workspace = true }
|
|||||||
libp2p = { workspace = true }
|
libp2p = { workspace = true }
|
||||||
libsecp256k1 = { workspace = true }
|
libsecp256k1 = { workspace = true }
|
||||||
multiaddr = { workspace = true }
|
multiaddr = { workspace = true }
|
||||||
pezkuwi-subxt = { workspace = true, features = ["native"] }
|
pezkuwi-subxt = { workspace = true, features = ["jsonrpsee", "native"] }
|
||||||
pezkuwi-subxt-signer = { workspace = true }
|
pezkuwi-subxt-signer = { workspace = true }
|
||||||
pezsc-chain-spec = { workspace = true }
|
pezsc-chain-spec = { workspace = true }
|
||||||
pezsp-core = { workspace = true }
|
pezsp-core = { workspace = true }
|
||||||
|
|||||||
Reference in New Issue
Block a user