lightning 5.7.0 → 5.7.1

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
+ ## 5.7.1
4
+
5
+ - `fundPsbt`: Correct ECPair import dependency in control flow
6
+
3
7
  ## 5.7.0
4
8
 
5
9
  - `getPendingPayments`: Add method to get a list of in-flight payments
@@ -205,7 +205,7 @@ module.exports = (args, cbk) => {
205
205
  }],
206
206
 
207
207
  // Derive the raw transaction from the funded PSBT
208
- tx: ['fund', ({ecp, fund}, cbk) => {
208
+ tx: ['ecp', 'fund', ({ecp, fund}, cbk) => {
209
209
  const {psbt} = fund;
210
210
 
211
211
  try {
package/package.json CHANGED
@@ -59,5 +59,5 @@
59
59
  "directory": "test/typescript"
60
60
  },
61
61
  "types": "index.d.ts",
62
- "version": "5.7.0"
62
+ "version": "5.7.1"
63
63
  }