paid-services 3.12.1 → 3.12.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
+ ## Version 3.12.2
4
+
5
+ - `serviceOpenTrade`: Fix regtest network support
6
+
3
7
  ## Version 3.12.1
4
8
 
5
9
  - `balancedOpenRequest`: Add method to derive balanced open proposal details
package/package.json CHANGED
@@ -13,8 +13,8 @@
13
13
  "bolt07": "1.8.0",
14
14
  "ecpair": "2.0.1",
15
15
  "invoices": "2.0.4",
16
- "ln-service": "53.9.2",
17
- "ln-sync": "3.10.1",
16
+ "ln-service": "53.9.3",
17
+ "ln-sync": "3.11.0",
18
18
  "tiny-secp256k1": "2.2.1"
19
19
  },
20
20
  "description": "Lightning Paid Services library",
@@ -42,5 +42,5 @@
42
42
  "integration-tests": "tap -j 2 --branches=1 --functions=1 --lines=1 --statements=1 -t 180 test/integration/*.js",
43
43
  "test": "tap --branches=1 --functions=1 --lines=1 --statements=1 -t 60 test/actions/*.js test/balanced/*.js test/capacity/*.js test/client/*.js test/config/*.js test/p2p/*.js test/records/*.js test/respond/*.js test/server/*.js test/server/*.js test/services/*.js test/trades/*.js"
44
44
  },
45
- "version": "3.12.1"
45
+ "version": "3.12.2"
46
46
  }
@@ -25,7 +25,7 @@ module.exports = ({network}) => {
25
25
  return {};
26
26
 
27
27
  case regtestNetwork:
28
- return {value: regestNetworkType};
28
+ return {value: regtestNetworkType};
29
29
 
30
30
  case testnetNetwork:
31
31
  return {value: testnetNetworkType};
@@ -140,7 +140,7 @@ module.exports = (args, cbk) => {
140
140
  });
141
141
 
142
142
  // Show the trade details blob
143
- return args.logger.info({
143
+ args.logger.info({
144
144
  waiting_for_trade_request_to: openTrade.trade,
145
145
  });
146
146