Monero
Loading...
Searching...
No Matches
check_missing_rpc_methods Namespace Reference

Variables

str USAGE = 'usage: check_untested_methods.py <rootdir>'
 rootdir = sys.argv[1]
list modules
bool error = False
 match = re.search('.*\"(.*)\".*', line)
 name = match.group(1)

Variable Documentation

◆ error

bool check_missing_rpc_methods.error = False

◆ match

check_missing_rpc_methods.match = re.search('.*\"(.*)\".*', line)

◆ modules

list check_missing_rpc_methods.modules
Initial value:
1= [
2 {
3 'name': 'daemon',
4 'object': daemon.Daemon(),
5 'path': rootdir + '/src/rpc/core_rpc_server.h',
6 'ignore': []
7 },
8 {
9 'name': 'wallet',
10 'object': wallet.Wallet(),
11 'path': rootdir + '/src/wallet/wallet_rpc_server.h',
12 'ignore': []
13 }
14]
Definition wallet.py:34

◆ name

check_missing_rpc_methods.name = match.group(1)

◆ rootdir

check_missing_rpc_methods.rootdir = sys.argv[1]

◆ USAGE

str check_missing_rpc_methods.USAGE = 'usage: check_untested_methods.py <rootdir>'