Browse Source
This should not affect any consumer of the API since we just shift the actual implementation from one side to the other, and keep aliases in place so scripts don't break. We also bump the version number from 0.0.7.3 to 0.7.4 which allows us to be in sync with c-lightning itself, and remove the superfluous `0` in front.travis-debug
Christian Decker
5 years ago
10 changed files with 13 additions and 12 deletions
@ -1,2 +1 @@ |
|||||
from .lightning import LightningRpc, RpcError, Millisatoshi, __version__ |
from pyln.client import LightningRpc, RpcError, Millisatoshi, __version__, Plugin, monkey_patch |
||||
from .plugin import Plugin, monkey_patch |
|
||||
|
@ -0,0 +1 @@ |
|||||
|
pyln-client==0.7.3 |
@ -1,6 +1,6 @@ |
|||||
from collections import OrderedDict |
from collections import OrderedDict |
||||
from enum import Enum |
from enum import Enum |
||||
from lightning import LightningRpc, Millisatoshi |
from .lightning import LightningRpc, Millisatoshi |
||||
from threading import RLock |
from threading import RLock |
||||
|
|
||||
import inspect |
import inspect |
@ -1 +0,0 @@ |
|||||
pylightning==0.0.7.3 |
|
@ -1,4 +1,4 @@ |
|||||
from lightning import Millisatoshi |
from pyln.client import Millisatoshi |
||||
|
|
||||
|
|
||||
def test_sum_radd(): |
def test_sum_radd(): |
@ -1,5 +1,5 @@ |
|||||
from lightning import Plugin |
from pyln.client import Plugin |
||||
from lightning.plugin import Request, Millisatoshi |
from pyln.client.plugin import Request, Millisatoshi |
||||
import itertools |
import itertools |
||||
import pytest |
import pytest |
||||
|
|
@ -1,4 +1,4 @@ |
|||||
from lightning import Millisatoshi |
from pyln.client import Millisatoshi |
||||
|
|
||||
|
|
||||
def test_to_approx_str(): |
def test_to_approx_str(): |
Loading…
Reference in new issue