balanceofsatoshis 11.52.3 → 11.52.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## 11.52.3
3
+ ## 11.52.4
4
4
 
5
5
  - `telegram`: Fix crash when getting /liquidity and there is no liquidity
6
6
 
package/README.md CHANGED
@@ -188,6 +188,7 @@ bos utxos
188
188
  - Running `telegram` [via nohup/tmux howto](https://plebnet.wiki/wiki/Umbrel_-_Installing_BoS#Installing_Telegram_Bot)
189
189
  - Running `telegram` [via systemd](https://github.com/ziggie1984/miscellanous/blob/97c4905747fe23a824b6e53dc674c4a571ac0f5c/automation_telegram_bot.md)
190
190
  - Another `rebalance` + `tags` & `telegram` [commands howto](https://raspibolt.org/bonus/lightning/balance-of-satoshis.html#balance-of-satoshis-in-action)
191
+ - Documentation for bos commands [commands howto](https://github.com/niteshbalusu11/BOS-Commands-Document#balance-of-satoshis-commands)
191
192
 
192
193
  Want to stack some sats? Write your own LN paywalled guide!
193
194
 
package/package.json CHANGED
@@ -37,7 +37,7 @@
37
37
  "ln-accounting": "5.0.5",
38
38
  "ln-service": "53.8.0",
39
39
  "ln-sync": "3.10.0",
40
- "ln-telegram": "3.17.2",
40
+ "ln-telegram": "3.17.3",
41
41
  "moment": "2.29.1",
42
42
  "paid-services": "3.11.0",
43
43
  "probing": "2.0.3",
@@ -81,5 +81,5 @@
81
81
  "postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis --push .",
82
82
  "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"
83
83
  },
84
- "version": "11.52.3"
84
+ "version": "11.52.4"
85
85
  }
@@ -865,7 +865,8 @@ module.exports = (args, cbk) => {
865
865
  from,
866
866
  confirmed: transaction.is_confirmed,
867
867
  id: connectedId,
868
- send: (id, msg) => args.bot.api.sendMessage(id, msg, markdown),
868
+ nodes: getNodes,
869
+ send: (id, msg, opt) => args.bot.api.sendMessage(id, msg, opt),
869
870
  transaction: record,
870
871
  });
871
872
  } catch (err) {