cargo fmt

This commit is contained in:
Greg Fitzgerald
2018-08-09 10:52:53 -06:00
parent abd55e4159
commit bca2294655
4 changed files with 7 additions and 16 deletions

View File

@@ -243,7 +243,9 @@ impl ThinClient {
/// until the server sends a response.
pub fn check_signature(&mut self, signature: &Signature) -> bool {
trace!("check_signature");
let req = Request::GetSignature { signature: *signature };
let req = Request::GetSignature {
signature: *signature,
};
let data = serialize(&req).expect("serialize GetSignature in pub fn check_signature");
let now = Instant::now();
let mut done = false;