Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update utils/staking-miner/src/runtime_versions.rs
Co-authored-by: Niklas Adolfsson <[email protected]>
  • Loading branch information
chevdor and niklasad1 authored Jun 22, 2022
commit e59cfa2bc3afa51e7d3cc4abddde7621d79bc90f
2 changes: 1 addition & 1 deletion utils/staking-miner/src/runtime_versions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,6 @@ impl<'a> fmt::Display for RuntimeVersions<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let _ = write!(f, "- linked:\n{}", self.linked);
let _ = write!(f, "- remote :\n{}", self.remote);
write!(f, "Compatibles: {}", if self.compatible { "YES" } else { "NO" })
write!(f, "Compatible: {}", if self.compatible { "YES" } else { "NO" })
}
}