test_renepay.py: remove data dump into /tmp
Changelog-None
This commit is contained in:
committed by
Rusty Russell
parent
5c0827e417
commit
7a1a363330
@@ -379,19 +379,11 @@ def test_hardmpp(node_factory):
|
||||
]
|
||||
)
|
||||
|
||||
with open("/tmp/l1-chans.txt", "w") as f:
|
||||
print(json.dumps(l1.rpc.listchannels()), file=f)
|
||||
|
||||
inv = l4.rpc.invoice("any", "any", "description")
|
||||
l2.rpc.call("pay", {"bolt11": inv["bolt11"], "amount_msat": 2000000000})
|
||||
l2.wait_for_htlcs()
|
||||
assert l4.rpc.listinvoices()["invoices"][0]["amount_received_msat"] == 2000000000
|
||||
|
||||
with open("/tmp/l2-peerchan.txt", "w") as f:
|
||||
print(json.dumps(l2.rpc.listpeerchannels()), file=f)
|
||||
with open("/tmp/l3-peerchan.txt", "w") as f:
|
||||
print(json.dumps(l3.rpc.listpeerchannels()), file=f)
|
||||
|
||||
inv2 = l6.rpc.invoice("1800000sat", "inv2", "description")
|
||||
|
||||
out = subprocess.check_output(
|
||||
|
||||
Reference in New Issue
Block a user