Skip to content

Commit

Permalink
Update dancekit to change ref to vec (#661)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpolaczyk authored Aug 23, 2024
1 parent cc4947c commit 0c524b0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/orchestrator-chain-rpc-interface/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ impl OrchestratorChainInterface for OrchestratorChainRpcClient {
async fn prove_read(
&self,
orchestrator_parent: PHash,
relevant_keys: &[Vec<u8>],
relevant_keys: &Vec<Vec<u8>>,
) -> OrchestratorChainResult<StorageProof> {
let mut cloned = Vec::new();
cloned.extend_from_slice(relevant_keys);
Expand Down
2 changes: 1 addition & 1 deletion node/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ where
async fn prove_read(
&self,
orchestrator_parent: PHash,
relevant_keys: &[Vec<u8>],
relevant_keys: &Vec<Vec<u8>>,
) -> OrchestratorChainResult<StorageProof> {
let state_backend = self.backend.state_at(orchestrator_parent)?;

Expand Down

0 comments on commit 0c524b0

Please sign in to comment.