make Geth default Ethereum daemon

This commit is contained in:
The MMGen Project 2023-05-19 16:16:53 +00:00
commit a873f14548
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
3 changed files with 3 additions and 8 deletions

View file

@ -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']),
}

View file

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

View file

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