Christian Decker
5 years ago
committed by
Rusty Russell
4 changed files with 55 additions and 2 deletions
@ -1,5 +1,5 @@ |
|||||
bitstring==3.1.6 |
bitstring==3.1.6 |
||||
cryptography==2.7 |
cryptography==2.8 |
||||
coincurve==12.0.0 |
coincurve==12.0.0 |
||||
base58==1.0.2 |
base58==1.0.2 |
||||
secp256k1==0.13.2 |
secp256k1==0.13.2 |
||||
|
@ -0,0 +1,14 @@ |
|||||
|
#!/usr/bin/env python3 |
||||
|
|
||||
|
from pyln.client import Plugin |
||||
|
|
||||
|
# Register a different set feature of feature bits for each location so we can |
||||
|
# later check that they are being passed correctly. |
||||
|
plugin = Plugin( |
||||
|
init_features=1 << 101, |
||||
|
node_features=1 << 103, |
||||
|
invoice_features=1 << 105, |
||||
|
) |
||||
|
|
||||
|
|
||||
|
plugin.run() |
Loading…
Reference in new issue