got rid of Arc<T> dispatch

This commit is contained in:
NikVolf
2016-07-16 19:09:14 +02:00
parent 8e26977693
commit 77bbab009e
7 changed files with 12 additions and 13 deletions

View File

@@ -16,7 +16,6 @@
use util::numbers::*;
use ipc::{IpcConfig, BinaryConvertError};
use std::sync::Arc;
use std::collections::VecDeque;
use std::mem;
@@ -44,4 +43,4 @@ pub trait ChainNotify : Send + Sync {
}
}
impl IpcConfig<ChainNotify> for Arc<ChainNotify> { }
impl IpcConfig<ChainNotify> for ChainNotify { }

View File

@@ -1015,4 +1015,4 @@ impl MayPanic for Client {
}
}
impl IpcConfig<BlockChainClient> for Arc<BlockChainClient> { }
impl IpcConfig<BlockChainClient> for BlockChainClient { }