Merge #1759: chore: fix some minor issues in the comments

ac1043a1e09ec1570c489d537fbcff3ebb4c7152 chore: fix some minor issues in the comments (cloudclaim)

Pull request description:

  fix some minor issues in the comments

ACKs for top commit:
  jp1ac4:
    ACK ac1043a1e09ec1570c489d537fbcff3ebb4c7152.

Tree-SHA512: ef571e559dddf5a87d03d50cc0eaf041d961280e9e09cc9df4da7a963da6d45df1f91615779412465e75bec46c942cfd8a287434bf51e5f1cf6f8c1f737c8d61
This commit is contained in:
edouardparis 2025-07-10 15:43:07 +02:00
commit aaa235c6dd
No known key found for this signature in database
GPG Key ID: E65F7A089C20DC8F
4 changed files with 4 additions and 4 deletions

View File

@ -621,7 +621,7 @@ impl RescanSetting {
return Task::none();
}
self.processing = true;
info!("Asking deamon to rescan with timestamp: {}", t);
info!("Asking daemon to rescan with timestamp: {}", t);
return Task::perform(
async move {
daemon.start_rescan(t.try_into().expect("t cannot be inferior to 0 otherwise genesis block timestamp is chosen"))

View File

@ -336,7 +336,7 @@ pub fn import_descriptor<'a>(
let backup_imported = if imported_backup {
Some(
Row::new()
.push(text("Backup successfuly imported!").bold())
.push(text("Backup successfully imported!").bold())
.push(Space::with_width(Length::Fill)),
)
} else {

View File

@ -145,7 +145,7 @@ fn main() -> Result<(), Box<dyn Error>> {
fn setup_panic_hook(liana_directory: &LianaDirectory) {
let bitcoind_dir = liana_directory.bitcoind_directory();
std::panic::set_hook(Box::new(move |panic_info| {
error!("Panic occured");
error!("Panic occurred");
if let Err(e) = delete_all_bitcoind_locks_for_process(bitcoind_dir.clone()) {
error!("Failed to delete internal bitcoind locks: {}", e);
}

View File

@ -257,7 +257,7 @@ pub struct Transaction {
pub raw: bitcoin::Transaction,
pub inputs: Vec<Input>,
pub outputs: Vec<Output>,
/// If the transaction has multiple incoming or ougoing payment.
/// If the transaction has multiple incoming or outgoing payments.
pub is_batch: bool,
}