M test/daemontest_d/ut_rpc.py

This commit is contained in:
The MMGen Project 2025-03-15 18:24:52 +00:00
commit ef2d8ae82d
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2

View file

@ -167,7 +167,7 @@ async def run_test(network_ids, test_cf_auth=False, daemon_ids=None, cfg_overrid
class unit_tests:
altcoin_deps = ('ltc', 'bch', 'geth', 'erigon', 'parity', 'xmrwallet')
altcoin_deps = ('ltc', 'bch', 'geth', 'reth', 'erigon', 'parity', 'xmrwallet')
arm_skip = ('parity',) # no prebuilt binaries for ARM
async def btc(self, name, ut):
@ -204,6 +204,9 @@ class unit_tests:
'eth_testnet_chain_names': ['goerli', 'holesky', 'foo', 'bar', 'baz'],
})
async def reth(self, name, ut):
return await run_test(['eth', 'eth_rt'], daemon_ids=['reth']) # TODO: eth_tn
async def erigon(self, name, ut):
return await run_test(['eth', 'eth_tn', 'eth_rt'], daemon_ids=['erigon'])