Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add ToDo comment for migration to state_call RPC
  • Loading branch information
cmichi committed Sep 19, 2022
commit 3119f64a3b0692bc6ce1be8b5f4e5fea82f7e14d
3 changes: 2 additions & 1 deletion crates/env/src/engine/e2e/xts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ where
data: data.into(),
salt: salt.into(),
};

// TODO(#xxx) Dry-run has to use the `state_call` RPC.
let params = rpc_params![call_request];
self.ws_client
.request("contracts_instantiate", params)
Expand Down Expand Up @@ -288,6 +288,7 @@ where
}),
input_data: Bytes(data),
};
// TODO(#xxx) Dry-run has to use the `state_call` RPC.
let params = rpc_params![call_request];
self.ws_client
.request("contracts_call", params)
Expand Down