Browse Source

Update coin daemon support to latest versions

- Bitcoin Cash Node:  v26.0.0
- Litecoin Core:      v21.2.2
- Geth:               v1.11.5
- Monero:             v0.18.2.0 (tested)
The MMGen Project 2 years ago
parent
commit
52b0fa5508
4 changed files with 5 additions and 5 deletions
  1. 1 1
      mmgen/data/release_date
  2. 1 1
      mmgen/data/version
  3. 2 2
      mmgen/proto/btc/daemon.py
  4. 1 1
      mmgen/proto/eth/daemon.py

+ 1 - 1
mmgen/data/release_date

@@ -1 +1 @@
-January 2023
+March 2023

+ 1 - 1
mmgen/data/version

@@ -1 +1 @@
-13.3.dev36
+13.3.dev37

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

@@ -126,7 +126,7 @@ class bitcoin_core_daemon(CoinDaemon):
 		return e.args[0]
 
 class bitcoin_cash_node_daemon(bitcoin_core_daemon):
-	daemon_data = _dd('Bitcoin Cash Node', 25000000, '25.0.0')
+	daemon_data = _dd('Bitcoin Cash Node', 26000000, '26.0.0')
 	exec_fn = 'bitcoind-bchn'
 	cli_fn = 'bitcoin-cli-bchn'
 	rpc_ports = _nw(8432, 18432, 18543) # use non-standard ports (core+100)
@@ -154,7 +154,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', 210201, '0.21.2.1')
+	daemon_data = _dd('Litecoin Core', 210202, '0.21.2.2')
 	exec_fn = 'litecoind'
 	cli_fn = 'litecoin-cli'
 	testnet_dir = 'testnet4'

+ 1 - 1
mmgen/proto/eth/daemon.py

@@ -89,7 +89,7 @@ class parity_daemon(openethereum_daemon):
 	exec_fn = 'parity'
 
 class geth_daemon(ethereum_daemon):
-	daemon_data = _dd('Geth', 1010026, '1.10.26')
+	daemon_data = _dd('Geth', 1011005, '1.11.5')
 	version_pat = r'Geth/v(\d+)\.(\d+)\.(\d+)'
 	exec_fn = 'geth'
 	use_pidfile = False