balanceofsatoshis 12.4.0 → 12.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/README.md +1 -1
- package/package.json +4 -4
- package/telegram/start_telegram_bot.js +4 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"ini": "3.0.0",
|
|
37
37
|
"inquirer": "8.2.2",
|
|
38
38
|
"ln-accounting": "5.0.6",
|
|
39
|
-
"ln-service": "53.
|
|
39
|
+
"ln-service": "53.13.0",
|
|
40
40
|
"ln-sync": "3.12.0",
|
|
41
|
-
"ln-telegram": "3.21.
|
|
41
|
+
"ln-telegram": "3.21.2",
|
|
42
42
|
"moment": "2.29.3",
|
|
43
43
|
"paid-services": "3.15.1",
|
|
44
44
|
"probing": "2.0.5",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@alexbosworth/tap": "15.0.11",
|
|
57
57
|
"invoices": "2.0.6",
|
|
58
|
-
"ln-docker-daemons": "2.2.
|
|
58
|
+
"ln-docker-daemons": "2.2.9",
|
|
59
59
|
"mock-lnd": "1.4.1",
|
|
60
60
|
"tiny-secp256k1": "2.2.1"
|
|
61
61
|
},
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis --push .",
|
|
85
85
|
"test": "tap --branches=1 --functions=1 --lines=1 --statements=1 -t 60 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"
|
|
86
86
|
},
|
|
87
|
-
"version": "12.4.
|
|
87
|
+
"version": "12.4.1"
|
|
88
88
|
}
|
|
@@ -302,6 +302,8 @@ module.exports = (args, cbk) => {
|
|
|
302
302
|
args.bot.command('mempool', async ctx => {
|
|
303
303
|
try {
|
|
304
304
|
return await handleMempoolCommand({
|
|
305
|
+
from: ctx.message.from.id,
|
|
306
|
+
id: connectedId,
|
|
305
307
|
reply: n => ctx.reply(n, markdown),
|
|
306
308
|
request: args.request,
|
|
307
309
|
});
|
|
@@ -409,6 +411,8 @@ module.exports = (args, cbk) => {
|
|
|
409
411
|
await handleVersionCommand({
|
|
410
412
|
named,
|
|
411
413
|
version,
|
|
414
|
+
from: ctx.message.from.id,
|
|
415
|
+
id: connectedId,
|
|
412
416
|
request: args.request,
|
|
413
417
|
reply: n => ctx.reply(n, markdown),
|
|
414
418
|
});
|