log inbound channel

This commit is contained in:
Alex Bosworth 2025-01-28 13:15:40 -08:00
parent 849916cc6f
commit dbaf161e2c
No known key found for this signature in database
GPG key ID: E80D2F3F311FD87E
4 changed files with 940 additions and 299 deletions

View file

@ -1,5 +1,9 @@
# Versions
## 19.4.8
- `invoice`: Add `--virtual` inbound channel logging
## 19.4.7
- Add support for LND 0.18.4

View file

@ -335,7 +335,10 @@ module.exports = (args, cbk) => {
}
}
args.logger.info({accepting_payment: true});
args.logger.info({
receiving_channel: forward.in_channel,
accepting_payment: true,
});
forward.settle({secret: addInvoice.secret});

1222
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -31,13 +31,13 @@
"csv-parse": "5.6.0",
"ecpair": "2.1.0",
"goldengate": "14.0.10",
"grammy": "1.34.0",
"grammy": "1.34.1",
"hot-formula-parser": "4.0.0",
"import-lazy": "4.0.0",
"ini": "5.0.0",
"inquirer": "12.3.0",
"inquirer": "12.3.3",
"ln-accounting": "8.0.6",
"ln-service": "57.22.3",
"ln-service": "57.23.0",
"ln-sync": "6.4.0",
"ln-telegram": "6.1.11",
"minimist": "1.2.8",
@ -83,5 +83,5 @@
"postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis -t alexbosworth/balanceofsatoshis:$npm_package_version --push .",
"test": "npx nyc@17.1.0 node --experimental-test-coverage --test test/arrays/*.js test/balances/*.js test/chain/*.js test/display/*.js test/encryption/*.js test/lnd/*.js test/network/*.js test/nodes/*.js test/peers/*.js test/responses/*.js test/routing/*.js test/services/*.js test/swaps/*.js test/tags/*.js test/telegram/*.js test/wallets/*.js"
},
"version": "19.4.7"
"version": "19.4.8"
}