Merge pull request #252 from tecnovert/descriptors

Add BTC descriptor wallet support.
This commit is contained in:
tecnovert
2025-01-31 19:06:22 +00:00
committed by GitHub
9 changed files with 418 additions and 54 deletions

View File

@@ -599,7 +599,12 @@ class BasicSwap(BaseApp):
}
# Passthrough settings
for setting_name in ("wallet_name", "mweb_wallet_name"):
for setting_name in (
"use_descriptors",
"wallet_name",
"watch_wallet_name",
"mweb_wallet_name",
):
if setting_name in chain_client_settings:
self.coin_clients[coin][setting_name] = chain_client_settings[
setting_name