move import to avoid warning

This commit is contained in:
Logan Collins 2018-10-23 23:25:23 -05:00
parent 85910d8d43
commit 0de5d12525
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ use bincode;
use crypto::Signature;
use serde::{Deserialize, Serialize};
use super::{Change, NodeChange, ErrorKind, Result};
use super::{Change, ErrorKind, Result};
use fault_log::{FaultKind, FaultLog};
use {NetworkInfo, NodeIdT};
@ -188,8 +188,8 @@ mod tests {
use std::sync::Arc;
use rand;
use super::{Change, NodeChange, SignedVote, VoteCounter};
use super::super::NodeChange;
use super::{Change, SignedVote, VoteCounter};
use fault_log::{FaultKind, FaultLog};
use NetworkInfo;