From c9de7dc0d630697b3c41846339c7df974d4eee9d Mon Sep 17 00:00:00 2001 From: goodactive Date: Fri, 6 Dec 2024 21:06:50 +0800 Subject: [PATCH] chore: fix some comments Signed-off-by: goodactive --- liana-gui/src/app/view/coins.rs | 4 ++-- liana-gui/src/app/view/spend/mod.rs | 2 +- liana-gui/src/installer/mod.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/liana-gui/src/app/view/coins.rs b/liana-gui/src/app/view/coins.rs index 1423c48c..9fa2b2ee 100644 --- a/liana-gui/src/app/view/coins.rs +++ b/liana-gui/src/app/view/coins.rs @@ -81,7 +81,7 @@ fn coin_list_view<'a>( Row::new() .spacing(5) .push( - // It it not possible to know if a coin is a + // It is not possible to know if a coin is a // change coin or not so for now, From is // enough p1_regular("From").style(color::GREY_3), @@ -98,7 +98,7 @@ fn coin_list_view<'a>( Row::new() .spacing(5) .push( - // It it not possible to know if a coin is a + // It is not possible to know if a coin is a // change coin or not so for now, From is // enough p1_regular("From").style(color::GREY_3), diff --git a/liana-gui/src/app/view/spend/mod.rs b/liana-gui/src/app/view/spend/mod.rs index 23e7b83f..8d818c5a 100644 --- a/liana-gui/src/app/view/spend/mod.rs +++ b/liana-gui/src/app/view/spend/mod.rs @@ -442,7 +442,7 @@ fn coin_list_view<'a>( Row::new() .spacing(5) .push( - // It it not possible to know if a coin is a + // It is not possible to know if a coin is a // change coin or not so for now, From is // enough p1_regular("From").style(color::GREY_3), diff --git a/liana-gui/src/installer/mod.rs b/liana-gui/src/installer/mod.rs index 38836988..efb06b4e 100644 --- a/liana-gui/src/installer/mod.rs +++ b/liana-gui/src/installer/mod.rs @@ -413,7 +413,7 @@ pub async fn install_local_wallet( daemon_config_path.canonicalize().map_err(|e| { Error::Unexpected(format!("Failed to canonicalize daemon config path: {}", e)) })?, - // Installer started a bitcoind, it is expected that gui will start it on on startup + // Installer started a bitcoind, it is expected that gui will start it on startup ctx.internal_bitcoind.is_some(), )) .map_err(|e| Error::Unexpected(format!("Failed to serialize gui config: {}", e)))?