address grumbles

This commit is contained in:
Nikolay Volf 2016-08-23 13:41:12 +03:00
parent 7c5435d3bb
commit 2d0a7c33bb
1 changed files with 2 additions and 2 deletions

View File

@ -169,9 +169,9 @@ impl IoHandler<ClientIoMessage> for ClientIoHandler {
#[cfg(feature="ipc")]
fn run_ipc(base_path: &Path, client: Arc<Client>, stop: Arc<AtomicBool>) {
let mut path = ::std::path::PathBuf::from(base_path);
let mut path = base_path.to_owned();
path.push("parity-chain.ipc");
let socket_addr = format!("ipc://{}", path.to_str().unwrap());
let socket_addr = format!("ipc://{}", path.to_string_lossy());
::std::thread::spawn(move || {
let mut worker = nanoipc::Worker::new(&(client as Arc<BlockChainClient>));
worker.add_reqrep(&socket_addr).expect("Ipc expected to initialize with no issues");