balanceofsatoshis 13.1.1 → 13.1.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,8 +1,8 @@
1
1
  # Versions
2
2
 
3
- ## 13.1.1
3
+ ## 13.1.2
4
4
 
5
- - `increase-outbound-liquidity, ``open`: Apply `--set-fee-rate` on open when
5
+ - `increase-outbound-liquidity`, `open`: Apply `--set-fee-rate` on open when
6
6
  supported
7
7
 
8
8
  ## 13.1.0
package/README.md CHANGED
@@ -7,7 +7,7 @@ Commands for working with LND balances.
7
7
 
8
8
  Supported LND versions:
9
9
 
10
- - v0.12.0-beta to v0.15.1-beta
10
+ - v0.15.2-beta
11
11
 
12
12
  ## Install
13
13
 
package/package.json CHANGED
@@ -34,9 +34,9 @@
34
34
  "hot-formula-parser": "4.0.0",
35
35
  "import-lazy": "4.0.0",
36
36
  "ini": "3.0.1",
37
- "inquirer": "9.1.2",
37
+ "inquirer": "9.1.3",
38
38
  "ln-accounting": "6.0.0",
39
- "ln-service": "54.2.0",
39
+ "ln-service": "54.2.1",
40
40
  "ln-sync": "3.14.0",
41
41
  "ln-telegram": "3.22.5",
42
42
  "moment": "2.29.4",
@@ -54,7 +54,7 @@
54
54
  "devDependencies": {
55
55
  "@alexbosworth/tap": "15.0.11",
56
56
  "invoices": "2.2.0",
57
- "ln-docker-daemons": "3.1.0",
57
+ "ln-docker-daemons": "3.1.1",
58
58
  "mock-lnd": "1.4.4",
59
59
  "tiny-secp256k1": "2.2.1"
60
60
  },
@@ -83,5 +83,5 @@
83
83
  "postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis --push .",
84
84
  "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"
85
85
  },
86
- "version": "13.1.1"
86
+ "version": "13.1.2"
87
87
  }
@@ -27,6 +27,7 @@ const tests = [
27
27
  channels: [{
28
28
  capacity: 2,
29
29
  cooperative_close_address: 'address',
30
+ fee_rate: undefined,
30
31
  give_tokens: 1,
31
32
  is_private: true,
32
33
  is_trusted_funding: false,
@@ -50,6 +51,7 @@ const tests = [
50
51
  channels: [{
51
52
  capacity: 5000000,
52
53
  cooperative_close_address: undefined,
54
+ fee_rate: undefined,
53
55
  give_tokens: undefined,
54
56
  is_private: false,
55
57
  is_trusted_funding: false,
@@ -77,6 +79,7 @@ const tests = [
77
79
  channels: [{
78
80
  capacity: 1,
79
81
  cooperative_close_address: 'coopCloseAddressNodeA',
82
+ fee_rate: 1,
80
83
  give_tokens: 3,
81
84
  is_private: true,
82
85
  is_trusted_funding: false,
@@ -90,6 +93,7 @@ const tests = [
90
93
  channels: [{
91
94
  capacity: 2,
92
95
  cooperative_close_address: 'coopCloseAddressNodeB',
96
+ fee_rate: 2,
93
97
  give_tokens: 4,
94
98
  is_private: false,
95
99
  is_trusted_funding: false,