From 9f92026fe2f33d216054b6f8ea62208f8d4ef290 Mon Sep 17 00:00:00 2001 From: Luke Anderson Date: Thu, 28 Mar 2019 19:52:36 +1100 Subject: [PATCH] rustfmt fix. --- validator_client/src/service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validator_client/src/service.rs b/validator_client/src/service.rs index 178a998fe..83e760855 100644 --- a/validator_client/src/service.rs +++ b/validator_client/src/service.rs @@ -25,8 +25,8 @@ use tokio::prelude::*; use tokio::runtime::Builder; use tokio::timer::Interval; use tokio_timer::clock::Clock; -use types::{Epoch, Fork, Slot}; use types::test_utils::generate_deterministic_keypairs; +use types::{Epoch, Fork, Slot}; //TODO: This service should be simplified in the future. Can be made more steamlined.