probing 5.0.2 → 5.0.3

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,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## Version 5.0.2
3
+ ## Version 5.0.3
4
4
 
5
5
  - Node.js 18 or higher is now required
6
6
 
@@ -195,6 +195,14 @@ module.exports = (args, cbk) => {
195
195
 
196
196
  const [initialA, initialB] = policies;
197
197
 
198
+ if (currentA.base_fee_mtokens !== initialA.base_fee_mtokens) {
199
+ return true;
200
+ }
201
+
202
+ if (currentB.base_fee_mtokens !== initialB.base_fee_mtokens) {
203
+ return true;
204
+ }
205
+
198
206
  if (currentA.fee_rate > initialA.fee_rate) {
199
207
  return true;
200
208
  }
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "dependencies": {
10
10
  "async": "3.2.5",
11
11
  "asyncjs-util": "1.2.12",
12
- "ln-service": "57.14.2"
12
+ "ln-service": "57.14.4"
13
13
  },
14
14
  "description": "Lightning Network probing utilities",
15
15
  "engines": {
@@ -30,5 +30,5 @@
30
30
  "scripts": {
31
31
  "test": "npx nyc@15.1 node --experimental-test-coverage --test"
32
32
  },
33
- "version": "5.0.2"
33
+ "version": "5.0.3"
34
34
  }