Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
roeierez committed Nov 14, 2024
1 parent 66ffb56 commit efd8915
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/core/src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ impl LiquidOnchainWallet {
let mut path = working_dir.as_ref().to_path_buf();
path.push(elements_network.as_str());
fs::remove_dir_all(&path)?;
warn!("Wippping wallet in path: {:?}", path);
warn!("Wiping wallet in path: {:?}", path);
lwk_persister = FsPersister::new(working_dir, elements_network, &descriptor)?;
Ok(Wollet::new(
elements_network,
Expand Down Expand Up @@ -333,7 +333,7 @@ impl OnchainWallet for LiquidOnchainWallet {
) {
Ok(()) => Ok(()),
Err(lwk_wollet::Error::UpdateHeightTooOld { .. }) => {
warn!("Full scan failed with update height too old, wipping storage and retrying");
warn!("Full scan failed with update height too old, wiping storage and retrying");
let mut new_wallet =
Self::create_wallet(&self.config, &self.working_dir, &self.signer)?;
lwk_wollet::full_scan_to_index_with_electrum_client(
Expand Down

0 comments on commit efd8915

Please sign in to comment.