Update coin daemon support to latest versions

- Bitcoin Core:       v24.0.1
- Bitcoin Cash Node:  v25.0.0
- Geth:               v1.10.26
- Monero:             v0.18.1.2 (tested)
This commit is contained in:
The MMGen Project 2023-01-04 13:40:13 +00:00
commit 94a904147f
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
3 changed files with 4 additions and 4 deletions

View file

@ -1 +1 @@
13.3.dev31
13.3.dev32

View file

@ -20,7 +20,7 @@ from ...util import list_gen
from ...daemon import CoinDaemon,_nw,_dd
class bitcoin_core_daemon(CoinDaemon):
daemon_data = _dd('Bitcoin Core', 230000, '23.0.0')
daemon_data = _dd('Bitcoin Core', 240001, '24.0.1')
exec_fn = 'bitcoind'
cli_fn = 'bitcoin-cli'
testnet_dir = 'testnet3'
@ -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', 24010000, '24.1.0')
daemon_data = _dd('Bitcoin Cash Node', 25000000, '25.0.0')
exec_fn = 'bitcoind-bchn'
cli_fn = 'bitcoin-cli-bchn'
rpc_ports = _nw(8432, 18432, 18543) # use non-standard ports (core+100)

View file

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