2 Commits df3559d420 ... 7539c4d40d

Author SHA1 Message Date
  The MMGen Project 7539c4d40d Support Bitcoin Core 28.0 2 weeks ago
  The MMGen Project 3d4f1c607b Support Litecoin Core 0.21.4 2 weeks ago
1 changed files with 2 additions and 2 deletions
  1. 2 2
      mmgen/proto/btc/daemon.py

+ 2 - 2
mmgen/proto/btc/daemon.py

@@ -19,7 +19,7 @@ from ...util import list_gen
 from ...daemon import CoinDaemon, _nw, _dd
 
 class bitcoin_core_daemon(CoinDaemon):
-	daemon_data = _dd('Bitcoin Core', 270100, '27.1.0')
+	daemon_data = _dd('Bitcoin Core', 280000, '28.0.0')
 	exec_fn = 'bitcoind'
 	cli_fn = 'bitcoin-cli'
 	testnet_dir = 'testnet3'
@@ -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'