Skip to content

Commit 08fca95

Browse files
committed
XC-412: Rename EvmRpcNonblockingSetup
1 parent d78a8bb commit 08fca95

File tree

3 files changed

+54
-55
lines changed

3 files changed

+54
-55
lines changed

tests/mock_http_runtime/mock/json/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ impl CanisterHttpRequestMatcher for JsonRpcRequestMatcher {
128128
match serde_json::from_slice(&request.body) {
129129
Ok(actual_body) => {
130130
if self.request_body() != actual_body {
131-
println!("{:?} *** {:?}", self.request_body(), actual_body);
132131
return false;
133132
}
134133
}

tests/setup/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ use std::sync::{Arc, Mutex};
2222
use std::time::Duration;
2323

2424
#[derive(Clone)]
25-
pub struct EvmRpcNonblockingSetup {
25+
pub struct EvmRpcSetup {
2626
pub env: Arc<nonblocking::PocketIc>,
2727
pub caller: Principal,
2828
pub controller: Principal,
2929
pub canister_id: CanisterId,
3030
}
3131

32-
impl EvmRpcNonblockingSetup {
32+
impl EvmRpcSetup {
3333
pub async fn new() -> Self {
3434
Self::with_args(InstallArgs {
3535
demo: Some(true),
@@ -215,7 +215,7 @@ impl EvmRpcNonblockingSetup {
215215
}
216216

217217
// TODO XC-412: Add a `request_cost()` method to `evm_rpc_client::RequestBuilder`
218-
// and get rid ogf
218+
// and delete this method
219219
pub async fn request_cost(
220220
&self,
221221
source: RpcService,

0 commit comments

Comments
 (0)