Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nkysg committed Feb 14, 2023
1 parent cd71f35 commit 0aee72a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ fn greater_barnard_fork_version(ver_str: &str) -> bool {
let nums = nums.unwrap();
for (a, b) in nums.iter().zip(BARNARD_HARD_FORK_VERSION.iter()) {
match a.cmp(b) {
Ordering::Greater=> return true,
Ordering::Greater => return true,
Ordering::Less => return false,
Ordering::Equal => continue,
}
Expand Down

0 comments on commit 0aee72a

Please sign in to comment.