This commit is contained in:
hatim boufnichel 2024-04-24 21:31:28 +02:00
parent 8ed9abd80e
commit fae2c82d5c

View file

@ -34,7 +34,7 @@ export const setupNetwork = async () => {
const sendBalancingPayment = async (instances: LndInstances) => { const sendBalancingPayment = async (instances: LndInstances) => {
const invoice = await instances.dave.NewInvoice(5_000_000, "balancing_payment", 3600) const invoice = await instances.dave.NewInvoice(5_000_000, "balancing_payment", 3600)
const payment = await instances.carol.PayInvoice(invoice.payRequest, 0, 200_000) const payment = await instances.carol.PayInvoice(invoice.payRequest, 0, 5_000_000)
console.log({ payment }) console.log({ payment })
} }