pytest plugins: use the standard 'no operation' syntax for hooks

This commit is contained in:
darosior
2020-01-31 12:50:37 +01:00
committed by ZmnSCPxj, ZmnSCPxj jxPCSmnZ
parent 6e34aa233a
commit 9030e5d779
4 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ def db_write(plugin, writes, **kwargs):
plugin.conn.execute("COMMIT;") plugin.conn.execute("COMMIT;")
return True return {"result": "continue"}
plugin.add_option('dblog-file', None, 'The db file to create.') plugin.add_option('dblog-file', None, 'The db file to create.')

View File

@@ -11,7 +11,7 @@ plugin = Plugin()
@plugin.hook('invoice_payment') @plugin.hook('invoice_payment')
def on_payment(payment, plugin, **kwargs): def on_payment(payment, plugin, **kwargs):
time.sleep(float(plugin.get_option('holdtime'))) time.sleep(float(plugin.get_option('holdtime')))
return {} return {'result': 'continue'}
plugin.add_option('holdtime', '10', 'The time to hold invoice for.') plugin.add_option('holdtime', '10', 'The time to hold invoice for.')

View File

@@ -20,7 +20,7 @@ def on_payment(payment, plugin, **kwargs):
WIRE_TEMPORARY_NODE_FAILURE = 0x2002 WIRE_TEMPORARY_NODE_FAILURE = 0x2002
return {'failure_code': WIRE_TEMPORARY_NODE_FAILURE} return {'failure_code': WIRE_TEMPORARY_NODE_FAILURE}
return {} return {'result': 'continue'}
plugin.run() plugin.run()

View File

@@ -24,7 +24,7 @@ def on_rpc_command(plugin, rpc_command, **kwargs):
elif request["method"] == "help": elif request["method"] == "help":
request["method"] = "autocleaninvoice" request["method"] = "autocleaninvoice"
return {"replace": request} return {"replace": request}
return {"continue": True} return {"result": "continue"}
plugin.run() plugin.run()