mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Tests: add usage note to check-rpc-mappings.py
This commit is contained in:
parent
4a3e8c5aa6
commit
03a2d68010
1 changed files with 4 additions and 0 deletions
|
@ -90,6 +90,10 @@ def process_mapping(fname):
|
|||
return cmds
|
||||
|
||||
def main():
|
||||
if len(sys.argv) != 2:
|
||||
print('Usage: {} ROOT-DIR'.format(sys.argv[0]), file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
root = sys.argv[1]
|
||||
|
||||
# Get all commands from dispatch tables
|
||||
|
|
Loading…
Reference in a new issue