mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-20 15:44:21 +01:00
People running master notice that calling listconfigs fails, because
we don't handle objects called xxx_msat correctly (see
d348554ff4). This makes it painful
to test, until we release a pyln-client version.
Fortunately, the three changes in master are all fully backwards compatible,
so we can simply cut a release now and upload to pipy.org.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
24 lines
575 B
Python
24 lines
575 B
Python
from .lightning import LightningRpc, RpcError, Millisatoshi
|
|
from .plugin import Plugin, monkey_patch, RpcException
|
|
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits
|
|
from .gossmapstats import GossmapStats
|
|
|
|
__version__ = "23.05.2"
|
|
|
|
__all__ = [
|
|
"LightningRpc",
|
|
"Plugin",
|
|
"RpcError",
|
|
"RpcException",
|
|
"Millisatoshi",
|
|
"__version__",
|
|
"monkey_patch",
|
|
"Gossmap",
|
|
"GossmapNode",
|
|
"GossmapChannel",
|
|
"GossmapHalfchannel",
|
|
"GossmapNodeId",
|
|
"LnFeatureBits",
|
|
"GossmapStats",
|
|
]
|