From b5870f1694023028d386bf85f3d6d0e77d852ef8 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Thu, 7 Oct 2021 17:55:40 +0000 Subject: [PATCH] support Bitcoin Core v22.0.0 --- mmgen/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmgen/daemon.py b/mmgen/daemon.py index a887ab42..272e42a2 100755 --- a/mmgen/daemon.py +++ b/mmgen/daemon.py @@ -475,7 +475,7 @@ class CoinDaemon(Daemon): msg(f'Cannot remove {self.network_datadir!r} - daemon is not stopped') class bitcoin_core_daemon(CoinDaemon): - daemon_data = _dd('Bitcoin Core', 210100, '0.21.1') + daemon_data = _dd('Bitcoin Core', 220000, '22.0.0') exec_fn = 'bitcoind' cli_fn = 'bitcoin-cli' testnet_dir = 'testnet3'