make Geth default Ethereum daemon
This commit is contained in:
parent
e1f68963a7
commit
a873f14548
3 changed files with 3 additions and 8 deletions
|
|
@ -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']),
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue