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)
This commit is contained in:
The MMGen Project 2023-03-23 17:30:22 +00:00
commit 52b0fa5508
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
4 changed files with 5 additions and 5 deletions

View file

@ -1 +1 @@
January 2023
March 2023

View file

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

View file

@ -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'

View file

@ -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