tx-pool: remove more spaces

This commit is contained in:
Andrew Jones 2019-03-01 14:19:02 +00:00
parent 7d8a77a322
commit 603d15955d
1 changed files with 2 additions and 2 deletions

View File

@ -52,8 +52,8 @@ impl<H: fmt::Debug + fmt::LowerHex> PartialEq for Error<H> where H: PartialEq {
match (self, other) {
(&AlreadyImported(ref h1), &AlreadyImported(ref h2)) => h1 == h2,
(&TooCheapToEnter(ref h1, ref s1), &TooCheapToEnter (ref h2, ref s2)) => h1 == h2 && s1 == s2,
(&TooCheapToReplace(ref old1, ref new1), &TooCheapToReplace (ref old2, ref new2)) => old1 == old2 && new1 == new2,
(&TooCheapToEnter(ref h1, ref s1), &TooCheapToEnter(ref h2, ref s2)) => h1 == h2 && s1 == s2,
(&TooCheapToReplace(ref old1, ref new1), &TooCheapToReplace(ref old2, ref new2)) => old1 == old2 && new1 == new2,
_ => false,
}
}