From 3d4f1c607bccb6a242019935c18d8107e1dc4c68 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Sun, 17 Nov 2024 12:22:38 +0000 Subject: [PATCH] Support Litecoin Core 0.21.4 --- mmgen/proto/btc/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmgen/proto/btc/daemon.py b/mmgen/proto/btc/daemon.py index 36cd5061..05066fb3 100755 --- a/mmgen/proto/btc/daemon.py +++ b/mmgen/proto/btc/daemon.py @@ -153,7 +153,7 @@ class bitcoin_cash_node_daemon(bitcoin_core_daemon): class litecoin_core_daemon(bitcoin_core_daemon): # v0.21.2rc5 crashes when mining more than 431 blocks in regtest mode: # CreateNewBlock: TestBlockValidity failed: bad-txns-vin-empty, Transaction check failed - daemon_data = _dd('Litecoin Core', 210300, '0.21.3') + daemon_data = _dd('Litecoin Core', 210400, '0.21.4') exec_fn = 'litecoind' cli_fn = 'litecoin-cli' testnet_dir = 'testnet4'