From 98023bd0bdd8fc8680aeaea595544fe252fcc5bd Mon Sep 17 00:00:00 2001 From: hatim boufnichel Date: Wed, 24 Apr 2024 21:06:49 +0200 Subject: [PATCH] up --- src/tests/networkSetup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/networkSetup.ts b/src/tests/networkSetup.ts index 5fbb6df48..6a77a33c1 100644 --- a/src/tests/networkSetup.ts +++ b/src/tests/networkSetup.ts @@ -34,7 +34,7 @@ export const setupNetwork = async () => { const sendBalancingPayment = async (instances: LndInstances) => { const invoice = await instances.dave.NewInvoice(5_000_000, "balancing_payment", 3600) - const payment = await instances.bob.PayInvoice(invoice.payRequest, 0, 200_000) + const payment = await instances.alice.PayInvoice(invoice.payRequest, 0, 200_000) console.log({ payment }) }