noise: Migrate noise over to poetry and add TLV support

TLV was removed in 0.12, so we should not be using it ourselves either.
This commit is contained in:
Christian Decker
2022-12-29 16:49:35 +01:00
parent 21d7a49d2f
commit 02b0826023
4 changed files with 25 additions and 14 deletions

View File

@@ -110,7 +110,7 @@ def test_msg_and_keysend(node_factory, executor):
p = m['payment']
assert(p is not None)
assert(p['payment_key'] is not None)
assert(p['amount'] == '10000msat')
assert(p['amount'] == 10000)
# Check that l3 actually got the funds I sent it
wait_for(lambda: l3.rpc.listpeers()['peers'][0]['channels'][0]['to_us_msat'] == amt)