Merge pull request #6593

6f5411d30 tests: fix missing error on missing python entry point (moneromooo-monero)
c6dc2850c python-rpc: add missing sync_txpool python entry point (moneromooo-monero)
This commit is contained in:
Alexander Blair 2020-08-16 12:41:10 -07:00
commit 9eebe01c58
No known key found for this signature in database
GPG key ID: C64552D877C32479
2 changed files with 11 additions and 0 deletions

View file

@ -46,5 +46,6 @@ for module in modules:
name = name[1:]
if not hasattr(module['object'], name):
print('Error: %s API method %s does not have a matching function' % (module['name'], name))
error = True
sys.exit(1 if error else 0)