Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some comments #1493

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions liana-gui/src/app/view/coins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion liana-gui/src/app/view/spend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion liana-gui/src/installer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)))?
Expand Down
Loading