diff --git a/client/orchestrator-chain-interface/src/lib.rs b/client/orchestrator-chain-interface/src/lib.rs index fcf05d1..7b40211 100644 --- a/client/orchestrator-chain-interface/src/lib.rs +++ b/client/orchestrator-chain-interface/src/lib.rs @@ -108,7 +108,7 @@ pub trait OrchestratorChainInterface: Send + Sync { async fn prove_read( &self, orchestrator_parent: PHash, - relevant_keys: &[Vec], + relevant_keys: &Vec>, ) -> OrchestratorChainResult; /// Get a stream of import block notifications. @@ -169,7 +169,7 @@ where async fn prove_read( &self, orchestrator_parent: PHash, - relevant_keys: &[Vec], + relevant_keys: &Vec>, ) -> OrchestratorChainResult { (**self) .prove_read(orchestrator_parent, relevant_keys) diff --git a/container-chain-primitives/authorities-noting-inherent/src/tests.rs b/container-chain-primitives/authorities-noting-inherent/src/tests.rs index bf06f6f..eafcc19 100644 --- a/container-chain-primitives/authorities-noting-inherent/src/tests.rs +++ b/container-chain-primitives/authorities-noting-inherent/src/tests.rs @@ -105,7 +105,7 @@ impl OrchestratorChainInterface for DummyOrchestratorChainInterface { async fn prove_read( &self, hash: PHash, - keys: &[Vec], + keys: &Vec>, ) -> OrchestratorChainResult { self.orchestrator_client .state_at(hash)