mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 22:58:43 +01:00
fix depedencies
This commit is contained in:
parent
bd2bb39fc1
commit
eb6bad964c
3 changed files with 11 additions and 3 deletions
|
@ -21,7 +21,7 @@ Now copy the generated RPC libs per SCP over to your Laptop and add them to the
|
|||
|
||||
scp -r admin@192.168.X.X:/home/admin/protobuffs ./protobuffs
|
||||
|
||||
Make sure the first 3 lines of the `rpc_pb2_grpc.py` & `walletunlocker_pb2_grpc.py` look like the following for python3 compatibility:
|
||||
Make sure the first 3 lines of the `rpc_pb2_grpc.py` look like the following for python3 compatibility:
|
||||
```
|
||||
from __future__ import absolute_import
|
||||
import grpc
|
||||
|
@ -29,4 +29,12 @@ import grpc
|
|||
from . import rpc_pb2 as rpc__pb2
|
||||
```
|
||||
|
||||
Make sure the first 3 lines of the `walletunlocker_pb2_grpc.py` look like the following for python3 compatibility:
|
||||
```
|
||||
from __future__ import absolute_import
|
||||
import grpc
|
||||
|
||||
from . import walletunlocker_pb2 as walletunlocker__pb2
|
||||
```
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
from __future__ import absolute_import
|
||||
import grpc
|
||||
|
||||
import rpc_pb2 as rpc__pb2
|
||||
from . import rpc_pb2 as rpc__pb2
|
||||
|
||||
|
||||
class LightningStub(object):
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
from __future__ import absolute_import
|
||||
import grpc
|
||||
|
||||
import walletunlocker_pb2 as walletunlocker__pb2
|
||||
from . import walletunlocker_pb2 as walletunlocker__pb2
|
||||
|
||||
|
||||
class WalletUnlockerStub(object):
|
||||
|
|
Loading…
Add table
Reference in a new issue