Add thin_client_service

This commit is contained in:
Greg Fitzgerald
2018-05-09 14:56:34 -06:00
parent bc824c1a6c
commit 43cd631579
6 changed files with 144 additions and 112 deletions

View File

@@ -3,7 +3,6 @@
//! messages to the network directly. The binary encoding of its messages are
//! unstable and may change in future releases.
use accounting_stage::{Request, Response, Subscription};
use bincode::{deserialize, serialize};
use futures::future::{ok, FutureResult};
use hash::Hash;
@@ -11,6 +10,7 @@ use signature::{KeyPair, PublicKey, Signature};
use std::collections::HashMap;
use std::io;
use std::net::{SocketAddr, UdpSocket};
use thin_client_service::{Request, Response, Subscription};
use transaction::Transaction;
pub struct ThinClient {