daemon: rpc_type -> rpc_desc
This commit is contained in:
parent
3662b859da
commit
0aec1cf099
3 changed files with 3 additions and 3 deletions
|
|
@ -261,7 +261,7 @@ class RPCDaemon(Daemon):
|
|||
def __init__(self, cfg, *, opts=None, flags=None):
|
||||
super().__init__(cfg, opts=opts, flags=flags)
|
||||
self.desc = '{} {} {}RPC daemon'.format(
|
||||
self.rpc_type,
|
||||
self.rpc_desc,
|
||||
getattr(self.proto.network_names, self.proto.network),
|
||||
'test suite ' if self.test_suite else '')
|
||||
self._set_ok += ('usr_daemon_args',)
|
||||
|
|
|
|||
|
|
@ -191,7 +191,7 @@ class erigon_daemon(geth_daemon):
|
|||
class erigon_rpcdaemon(RPCDaemon):
|
||||
|
||||
master_daemon = 'erigon_daemon'
|
||||
rpc_type = 'Erigon'
|
||||
rpc_desc = 'Erigon'
|
||||
exec_fn = 'rpcdaemon'
|
||||
use_pidfile = False
|
||||
use_threads = True
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ class monero_daemon(CoinDaemon):
|
|||
class MoneroWalletDaemon(RPCDaemon):
|
||||
|
||||
master_daemon = 'monero_daemon'
|
||||
rpc_type = 'Monero wallet'
|
||||
rpc_desc = 'Monero wallet'
|
||||
exec_fn = 'monero-wallet-rpc'
|
||||
coin = 'XMR'
|
||||
new_console_mswin = True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue