balanceofsatoshis 11.16.1 → 11.16.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,10 @@
1
1
  # Versions
2
2
 
3
+ ## 11.16.2
4
+
5
+ - Address Docker image installation issues
6
+ - `open-balanced-channel`: Move up indicator of waiting for incoming channel
7
+
3
8
  ## 11.16.1
4
9
 
5
10
  - `send`: Add support for global ignores from `tags` when `--avoid` unspecified
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:lts-alpine
1
+ FROM node:16
2
2
 
3
3
  # UID / GID 1000 is default for user `node` in the `node:latest` image, this
4
4
  # way the process will run as a non-root user
@@ -15,6 +15,6 @@ USER $USER_ID:$GROUP_ID
15
15
 
16
16
  COPY . /app/
17
17
 
18
- RUN npm ci --only=production
18
+ RUN npm ci
19
19
 
20
20
  ENTRYPOINT [ "/app/bos" ]
package/package.json CHANGED
@@ -28,7 +28,7 @@
28
28
  "crypto-js": "4.1.1",
29
29
  "csv-parse": "5.0.3",
30
30
  "goldengate": "11.0.0",
31
- "grammy": "1.5.3",
31
+ "grammy": "1.5.4",
32
32
  "hot-formula-parser": "4.0.0",
33
33
  "import-lazy": "4.0.0",
34
34
  "ini": "2.0.0",
@@ -80,5 +80,5 @@
80
80
  "postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis --push .",
81
81
  "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"
82
82
  },
83
- "version": "11.16.1"
83
+ "version": "11.16.2"
84
84
  }
@@ -238,7 +238,10 @@ module.exports = (args, cbk) => {
238
238
  // The output to the channel funding is capacity paid to the 2:2 addr
239
239
  tx.addOutput(script, args.capacity);
240
240
 
241
- args.logger.info({funding_tx_id: tx.getId()});
241
+ args.logger.info({
242
+ funding_tx_id: tx.getId(),
243
+ waiting_for_full_channel_proposal: true,
244
+ });
242
245
 
243
246
  return cbk(null, {
244
247
  pending_channel_id: bufferAsHex(multiSig.hash),
@@ -385,8 +388,6 @@ module.exports = (args, cbk) => {
385
388
  'payAcceptRequest',
386
389
  ({askForTransit, fundingTx}, cbk) =>
387
390
  {
388
- args.logger.info({waiting_for_incoming_channel: true});
389
-
390
391
  return waitForPendingOpen({
391
392
  interval,
392
393
  times,