ln-accounting 5.0.4 → 5.0.7
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 +1 -1
- package/README.md +1 -1
- package/package.json +9 -9
- package/test/records/test_get_all_payments.js +3 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# LND Harmony Accounting
|
|
2
2
|
|
|
3
|
-
Show LN sends and receives in [Harmony](https://github.com/
|
|
3
|
+
Show LN sends and receives in [Harmony](https://github.com/harmony-csv/harmony)
|
|
4
4
|
format
|
|
5
5
|
|
|
6
6
|
[](https://badge.fury.io/js/ln-accounting)
|
package/package.json
CHANGED
|
@@ -7,19 +7,19 @@
|
|
|
7
7
|
"url": "https://github.com/alexbosworth/ln-accounting/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"async": "3.2.
|
|
11
|
-
"asyncjs-util": "1.2.
|
|
12
|
-
"bitcoinjs-lib": "
|
|
13
|
-
"goldengate": "
|
|
14
|
-
"json2csv": "5.0.
|
|
15
|
-
"ln-service": "
|
|
10
|
+
"async": "3.2.3",
|
|
11
|
+
"asyncjs-util": "1.2.9",
|
|
12
|
+
"bitcoinjs-lib": "6.0.1",
|
|
13
|
+
"goldengate": "11.2.2",
|
|
14
|
+
"json2csv": "5.0.7",
|
|
15
|
+
"ln-service": "53.17.1"
|
|
16
16
|
},
|
|
17
17
|
"description": "lnd accounting reports",
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@alexbosworth/tap": "15.0.
|
|
19
|
+
"@alexbosworth/tap": "15.0.11"
|
|
20
20
|
},
|
|
21
21
|
"engines": {
|
|
22
|
-
"node": ">=12"
|
|
22
|
+
"node": ">=12.20"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"accounting",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"scripts": {
|
|
36
36
|
"test": "tap --branches=1 --functions=1 --lines=1 --statements=1 test/blockstream/*.js test/fiat/*.js test/harmony/*.js test/records/*.js"
|
|
37
37
|
},
|
|
38
|
-
"version": "5.0.
|
|
38
|
+
"version": "5.0.7"
|
|
39
39
|
}
|
|
@@ -99,7 +99,9 @@ const tests = [
|
|
|
99
99
|
expected: {
|
|
100
100
|
payments: [{
|
|
101
101
|
attempts: [{
|
|
102
|
-
confirmed_at:
|
|
102
|
+
confirmed_at: undefined,
|
|
103
|
+
created_at: '1970-01-01T00:00:00.001Z',
|
|
104
|
+
failed_at: '1970-01-01T00:00:00.001Z',
|
|
103
105
|
is_confirmed: false,
|
|
104
106
|
is_failed: true,
|
|
105
107
|
is_pending: false,
|