From 43ee7668abb79a1b0200b87f29f924add852156e Mon Sep 17 00:00:00 2001 From: Jonas Nick Date: Thu, 5 May 2022 12:50:19 +0000 Subject: [PATCH] joinmarket: explicitly create no descriptor wallet The default value of `descriptors` has changed from `false` to `true` in Bitcoin Core 23.0. --- modules/joinmarket.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/joinmarket.nix b/modules/joinmarket.nix index c14b40e..6a35aba 100644 --- a/modules/joinmarket.nix +++ b/modules/joinmarket.nix @@ -290,6 +290,7 @@ in { echo "Create watch-only wallet ${cfg.rpcWalletFile}" if ! output=$(${bitcoind.cli}/bin/bitcoin-cli -named createwallet \ wallet_name="${cfg.rpcWalletFile}" \ + descriptors=false \ ${optionalString (!bitcoind.regtest) "disable_private_keys=true"} 2>&1 ); then # Ignore error if bitcoind wallet already exists