Skip to content

Commit e9e3598

Browse files
whitslackrustyrussell
authored andcommitted
test_renepay.py: remove data dump into /tmp
Changelog-None
1 parent 5b06e65 commit e9e3598

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/test_renepay.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -379,19 +379,11 @@ def test_hardmpp(node_factory):
379379
]
380380
)
381381

382-
with open("/tmp/l1-chans.txt", "w") as f:
383-
print(json.dumps(l1.rpc.listchannels()), file=f)
384-
385382
inv = l4.rpc.invoice("any", "any", "description")
386383
l2.rpc.call("pay", {"bolt11": inv["bolt11"], "amount_msat": 2000000000})
387384
l2.wait_for_htlcs()
388385
assert l4.rpc.listinvoices()["invoices"][0]["amount_received_msat"] == 2000000000
389386

390-
with open("/tmp/l2-peerchan.txt", "w") as f:
391-
print(json.dumps(l2.rpc.listpeerchannels()), file=f)
392-
with open("/tmp/l3-peerchan.txt", "w") as f:
393-
print(json.dumps(l3.rpc.listpeerchannels()), file=f)
394-
395387
inv2 = l6.rpc.invoice("1800000sat", "inv2", "description")
396388

397389
out = subprocess.check_output(

0 commit comments

Comments
 (0)