Browse Source

make Geth default Ethereum daemon

The MMGen Project 1 year ago
parent
commit
a873f14548
3 changed files with 3 additions and 8 deletions
  1. 1 1
      mmgen/daemon.py
  2. 1 1
      mmgen/proto/eth/daemon.py
  3. 1 6
      test/test-release.d/cfg.sh

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

+ 1 - 1
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

+ 1 - 6
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"