balanceofsatoshis 11.47.1 → 11.47.2

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,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## 11.47.2
4
+
5
+ - `telegram`: Correct open and close channel messages not posting
6
+
3
7
  ## 11.47.1
4
8
 
5
9
  - `send`: Correct `max-fee-rate` parsing
package/package.json CHANGED
@@ -37,7 +37,7 @@
37
37
  "ln-accounting": "5.0.5",
38
38
  "ln-service": "53.7.1",
39
39
  "ln-sync": "3.9.0",
40
- "ln-telegram": "3.14.0",
40
+ "ln-telegram": "3.14.1",
41
41
  "moment": "2.29.1",
42
42
  "paid-services": "3.11.0",
43
43
  "probing": "2.0.2",
@@ -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/wallets/*.js"
83
83
  },
84
- "version": "11.47.1"
84
+ "version": "11.47.2"
85
85
  }
@@ -644,7 +644,7 @@ module.exports = (args, cbk) => {
644
644
  is_local_force_close: update.is_local_force_close,
645
645
  is_remote_force_close: update.is_remote_force_close,
646
646
  partner_public_key: update.partner_public_key,
647
- send: (id, message) => bot.api.sendMessage(id, message, markdown),
647
+ send: (id, msg, opt) => bot.api.sendMessage(id, msg, opt),
648
648
  },
649
649
  err => !!err ? logger.error({node: from, closed_err: err}) : null);
650
650
  });
@@ -658,7 +658,7 @@ module.exports = (args, cbk) => {
658
658
  is_partner_initiated: update.is_partner_initiated,
659
659
  is_private: update.is_private,
660
660
  partner_public_key: update.partner_public_key,
661
- send: (id, message) => bot.api.sendMessage(id, message, markdown),
661
+ send: (id, msg, opt) => bot.api.sendMessage(id, msg, opt),
662
662
  },
663
663
  err => !!err ? logger.error({open_err: err}) : null);
664
664
  });