mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
3e3b05e1b2
`pylightning` is not much more than an alias for `pyln-client`, so this removes the need to install that as well just to run the tests.
24 lines
819 B
Python
Executable File
24 lines
819 B
Python
Executable File
#!/usr/bin/env python3
|
|
from pyln.client import Plugin, Millisatoshi
|
|
|
|
|
|
plugin = Plugin(autopatch=True)
|
|
|
|
|
|
@plugin.method("echo")
|
|
def echo(plugin, msat: Millisatoshi, not_an_msat):
|
|
plugin.log("got echo for {} {} (types {} and {})"
|
|
.format(msat, not_an_msat, type(msat), type(not_an_msat)))
|
|
if not isinstance(msat, Millisatoshi):
|
|
raise TypeError("msat must be Millisatoshi not {}".format(type(msat)))
|
|
if isinstance(not_an_msat, Millisatoshi):
|
|
raise TypeError("not_an_msat must not be Millisatoshi")
|
|
plugin.log("got echo for {} (type {})".format(msat, type(msat)))
|
|
if not isinstance(msat, Millisatoshi):
|
|
raise TypeError("msat must be Millisatoshi not {}".format(type(msat)))
|
|
plugin.log("Returning {}".format(msat))
|
|
return {'echo_msat': msat}
|
|
|
|
|
|
plugin.run()
|