mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 23:24:27 +01:00
test: plugin channel_state_changed notification
This commit is contained in:
committed by
Rusty Russell
parent
218a9efaec
commit
ddc759c49e
@@ -15,11 +15,16 @@ def init(plugin, options, configuration):
|
||||
|
||||
|
||||
@plugin.subscribe("channel_opened")
|
||||
def channel_opened(plugin, channel_opened):
|
||||
def channel_opened(plugin, channel_opened, **kwargs):
|
||||
plugin.log("A channel was opened to us by {}, with an amount"
|
||||
" of {} and the following funding transaction id: {}"
|
||||
.format(channel_opened["id"], channel_opened["amount"],
|
||||
channel_opened["funding_txid"]))
|
||||
|
||||
|
||||
@plugin.subscribe("channel_state_changed")
|
||||
def channel_state_changed(plugin, channel_state_changed, **kwargs):
|
||||
plugin.log("channel_state_changed {}".format(channel_state_changed))
|
||||
|
||||
|
||||
plugin.run()
|
||||
|
||||
Reference in New Issue
Block a user