Browse Source

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)
The MMGen Project 2 years ago
parent
commit
94a904147f
3 changed files with 4 additions and 4 deletions
  1. 1 1
      mmgen/data/version
  2. 2 2
      mmgen/proto/btc/daemon.py
  3. 1 1
      mmgen/proto/eth/daemon.py

+ 1 - 1
mmgen/data/version

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

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

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

+ 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', 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