You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add taproot wallet descriptors with AddressType enum (#674)
* add taproot wallet descriptors with `AddressType` enum
fix doc clippy and cli defaults to P2WPKH address
fix coin selection bug and use taproot change addresses
* update dynamic split test
* make `AddressType` required
* change `swept_incoming_swapcoins` to a `HashSet`
let addr = maker.wallet().write()?.get_next_external_address()?;
295
+
let addr = maker
296
+
.wallet()
297
+
.write()?
298
+
.get_next_external_address(AddressType::P2TR)?;
292
299
293
300
log::info!("[{}] Send at least {:.8} BTC to {:?} | If you send extra, that will be added to your wallet balance", maker.config.network_port,Amount::from_sat(amount).to_btc(), addr);
0 commit comments