balanceofsatoshis 11.25.0 → 11.26.0

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.26.0
4
+
5
+ - `call`: Add support for `deletePendingChannel` to remove stuck pending chans
6
+
3
7
  ## 11.25.0
4
8
 
5
9
  - `trade-secret`: persist open trades, with expiration dates and longer-lived
package/commands/api.json CHANGED
@@ -164,6 +164,24 @@
164
164
  {
165
165
  "method": "deletePayments"
166
166
  },
167
+ {
168
+ "arguments": [
169
+ {
170
+ "description": "Conflicting confirmed transaction",
171
+ "named": "confirmed_transaction"
172
+ },
173
+ {
174
+ "description": "Stuck pending transaction",
175
+ "named": "pending_transaction"
176
+ },
177
+ {
178
+ "description": "Stuck pending channel transaction output index",
179
+ "named": "pending_transaction_vout",
180
+ "type": "number"
181
+ }
182
+ ],
183
+ "method": "deletePendingChannel"
184
+ },
167
185
  {
168
186
  "arguments": [
169
187
  {
package/package.json CHANGED
@@ -90,5 +90,5 @@
90
90
  "postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis --push .",
91
91
  "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"
92
92
  },
93
- "version": "11.25.0"
93
+ "version": "11.26.0"
94
94
  }