diff --git a/src/rpc/jsonrpsee_client/mod.rs b/src/rpc/jsonrpsee_client/mod.rs index 48f01c28e..95af36441 100644 --- a/src/rpc/jsonrpsee_client/mod.rs +++ b/src/rpc/jsonrpsee_client/mod.rs @@ -74,9 +74,9 @@ impl Request for JsonrpseeClient { let method_string = method.to_string(); // The inner jsonrpsee client must not deserialize to the `R` value, because the return value must - // implement `Send`. But we do not want to enforce the `R` value to implment this simply because we need + // implement `Send`. But we do not want to enforce the `R` value to implement this solely because we need // to de-async something. Therefore, the deserialization must happen outside of the newly spawned thread. - // We need to spawn a new thread because tokio does not allow the blocking of an asynchronous thread is not allowed: + // We need to spawn a new thread because tokio does not allow the blocking of an asynchronous thread: // ERROR: Cannot block the current thread from within a runtime. // This happens because a function attempted to block the current thread while the thread is being used to drive asynchronous tasks. let string_answer: Value = std::thread::spawn(move || {