File tree Expand file tree Collapse file tree 3 files changed +54
-55
lines changed
mock_http_runtime/mock/json Expand file tree Collapse file tree 3 files changed +54
-55
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ use std::sync::{Arc, Mutex};
2222use 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 ,
You can’t perform that action at this time.
0 commit comments