Add warning about jm incompatibility with bitcoind 30

Joinmarket is not compatible with bitcoind >= 30. Set bitcoind version to 29 to use jm.
This commit is contained in:
Bitcoin Txoko
2025-10-25 17:00:41 +02:00
committed by GitHub
parent a2a5d88b13
commit a2bfd7473a
+4
View File
@@ -2,6 +2,10 @@
{config, ...}: { {config, ...}: {
# Bitcoind is enabled by default via secure-node.nix. # Bitcoind is enabled by default via secure-node.nix.
services.bitcoind = { services.bitcoind = {
# Joinmarket is not compatible with bitcoind >= 30.
# (https://github.com/JoinMarket-Org/joinmarket-clientserver/pull/1775)
# To fix this, enable the following config:
# package = config.nix-bitcoin.pkgs.bitcoind_29;
enable = true; enable = true;
# Set this option to enable pruning with a specified MiB value. # Set this option to enable pruning with a specified MiB value.
# clightning is compatible with pruning. See # clightning is compatible with pruning. See