eth-monitor/eth_monitor/cli/rules.py

19 lines
271 B
Python
Raw Normal View History

2022-05-10 16:21:49 +02:00
rules_address_args = [
'input',
'output',
'exec',
'address',
]
rules_data_args = [
'data',
'data_in',
]
def to_config_names(v):
v = v.upper()
return ('ETHMONITOR_' + v, 'ETHMONITOR_X_' + v)