diff --git a/mmgen/daemon.py b/mmgen/daemon.py index 010b9e72..94dd5704 100755 --- a/mmgen/daemon.py +++ b/mmgen/daemon.py @@ -265,7 +265,7 @@ class CoinDaemon(Daemon): 'BCH': _cd(['bitcoin_cash_node']), 'LTC': _cd(['litecoin_core']), 'XMR': _cd(['monero']), - 'ETH': _cd(['openethereum','geth','erigon']), + 'ETH': _cd(['geth','erigon','openethereum']), 'ETC': _cd(['parity']), } diff --git a/mmgen/proto/eth/daemon.py b/mmgen/proto/eth/daemon.py index e1c1f151..21b61f17 100755 --- a/mmgen/proto/eth/daemon.py +++ b/mmgen/proto/eth/daemon.py @@ -91,7 +91,7 @@ class parity_daemon(openethereum_daemon): exec_fn = 'parity' class geth_daemon(ethereum_daemon): - daemon_data = _dd('Geth', 1011005, '1.11.5') + daemon_data = _dd('Geth', 1011006, '1.11.6') version_pat = r'Geth/v(\d+)\.(\d+)\.(\d+)' exec_fn = 'geth' use_pidfile = False diff --git a/test/test-release.d/cfg.sh b/test/test-release.d/cfg.sh index 15cfdf09..bde6d025 100755 --- a/test/test-release.d/cfg.sh +++ b/test/test-release.d/cfg.sh @@ -132,15 +132,10 @@ init_tests() { d_eth="operations for Ethereum and Ethereum Classic using devnet" t_eth=" - oe $test_py --coin=eth --daemon-id=openethereum ethdev - geth $test_py --coin=eth --daemon-id=geth ethdev + geth $test_py --coin=eth ethdev parity $test_py --coin=etc ethdev " - - [ "$FAST" ] && t_eth_skip='oe' [ "$ARM32" -o "$ARM64" ] && t_eth_skip+=' parity' - # ARM openethereum available only on ArchLinuxArm: - [ \( "$ARM32" -o "$ARM64" \) -a "$DISTRO" != 'archarm' ] && t_eth_skip+=' oe' d_autosign="transaction and message autosigning" t_autosign="- $test_py autosign"