Browse Source
test_lnbase_online: pass password=None to channel_establishment_flow
regtest_lnd
Janus
7 years ago
committed by
SomberNight
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
lib/tests/test_lnbase_online.py
|
|
@ -52,7 +52,7 @@ if __name__ == "__main__": |
|
|
|
async def async_test(): |
|
|
|
payment_preimage = bytes.fromhex("01"*32) |
|
|
|
RHASH = sha256(payment_preimage) |
|
|
|
openchannel = await peer.channel_establishment_flow(wallet, config, funding_satoshis, push_msat, temp_channel_id=os.urandom(32)) |
|
|
|
openchannel = await peer.channel_establishment_flow(wallet, config, None, funding_satoshis, push_msat, temp_channel_id=os.urandom(32)) |
|
|
|
expected_received_sat = 400000 |
|
|
|
pay_req = lnencode(LnAddr(RHASH, amount=Decimal("0.00000001")*expected_received_sat, tags=[('d', 'one cup of coffee')]), peer.privkey[:32]) |
|
|
|
print("payment request", pay_req) |
|
|
|