Skip to content

Commit

Permalink
chore: rm PathBuf import
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Apr 14, 2024
1 parent 8cb0307 commit 9a54d02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/rpc-client/src/builtin.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::{path::PathBuf, str::FromStr};
use std::{str::FromStr};

use alloy_json_rpc::RpcError;
use alloy_transport::{BoxTransport, BoxTransportConnect, TransportError, TransportErrorKind};
Expand All @@ -18,7 +18,7 @@ pub enum BuiltInConnectionString {
Ws(url::Url, Option<alloy_transport::Authorization>),
/// IPC transport.
#[cfg(feature = "ipc")]
Ipc(PathBuf),
Ipc(std::path::PathBuf),
}

impl BoxTransportConnect for BuiltInConnectionString {
Expand Down

0 comments on commit 9a54d02

Please sign in to comment.