Skip to content

Commit

Permalink
Merge #1465: Use 2 decimal for sync progression in home page
Browse files Browse the repository at this point in the history
5d65a4e Use 2 decimal for sync progression in home page (thomas)

Pull request description:

  Solves #907

ACKs for top commit:
  pythcoiner:
    ACK [5d65a4e](5d65a4e)

Tree-SHA512: 677a132d42f426a37e30829e8a91bc6e7f258d3cfe808d4f0b5cadd1951b3cccd75527574200cf5e2319cf90e6ff5e6e88f387c457123cb9d556c81da458fe12
  • Loading branch information
edouardparis committed Nov 18, 2024
2 parents 5133137 + 5d65a4e commit 8e18313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liana-gui/src/app/view/home.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub fn home_view<'a>(
.push(
match sync_status {
SyncStatus::BlockchainSync(progress) => text(format!(
"Syncing blockchain ({:.1}%)",
"Syncing blockchain ({:.2}%)",
100.0 * *progress
)),
SyncStatus::WalletFullScan => text("Syncing"),
Expand Down

0 comments on commit 8e18313

Please sign in to comment.