lightning 7.1.6 → 7.1.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
CHANGED
|
@@ -1540,6 +1540,9 @@ message Channel {
|
|
|
1540
1540
|
|
|
1541
1541
|
// The configured alias name of our peer.
|
|
1542
1542
|
string peer_alias = 34;
|
|
1543
|
+
|
|
1544
|
+
// This is the peer SCID alias.
|
|
1545
|
+
uint64 peer_scid_alias = 35 [jstype = JS_STRING];
|
|
1543
1546
|
}
|
|
1544
1547
|
|
|
1545
1548
|
message ListChannelsRequest {
|
package/grpc/protos/router.proto
CHANGED
|
@@ -513,9 +513,9 @@ message MissionControlConfig {
|
|
|
513
513
|
|
|
514
514
|
/*
|
|
515
515
|
ProbabilityModel defines which probability estimator should be used in
|
|
516
|
-
pathfinding.
|
|
516
|
+
pathfinding. Note that the bimodal estimator is experimental.
|
|
517
517
|
*/
|
|
518
|
-
ProbabilityModel
|
|
518
|
+
ProbabilityModel model = 6;
|
|
519
519
|
|
|
520
520
|
/*
|
|
521
521
|
EstimatorConfig is populated dependent on the estimator type.
|
|
@@ -580,6 +580,14 @@ message AprioriParameters {
|
|
|
580
580
|
available.
|
|
581
581
|
*/
|
|
582
582
|
double weight = 3;
|
|
583
|
+
|
|
584
|
+
/*
|
|
585
|
+
The fraction of a channel's capacity that we consider to have liquidity. For
|
|
586
|
+
amounts that come close to or exceed the fraction, an additional penalty is
|
|
587
|
+
applied. A value of 1.0 disables the capacity factor. Allowed values are in
|
|
588
|
+
[0.75, 1.0].
|
|
589
|
+
*/
|
|
590
|
+
double capacity_fraction = 4;
|
|
583
591
|
}
|
|
584
592
|
|
|
585
593
|
message QueryProbabilityRequest {
|
|
@@ -982,7 +982,8 @@ message ListSweepsResponse {
|
|
|
982
982
|
}
|
|
983
983
|
|
|
984
984
|
message LabelTransactionRequest {
|
|
985
|
-
// The txid of the transaction to label.
|
|
985
|
+
// The txid of the transaction to label. Note: When using gRPC, the bytes
|
|
986
|
+
// must be in little-endian (reverse) order.
|
|
986
987
|
bytes txid = 1;
|
|
987
988
|
|
|
988
989
|
// The label to add to the transaction, limited to 500 characters.
|
package/package.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@alexbosworth/node-fetch": "2.6.2",
|
|
34
34
|
"@alexbosworth/tap": "15.0.12",
|
|
35
35
|
"tsd": "0.28.1",
|
|
36
|
-
"typescript": "5.0.
|
|
36
|
+
"typescript": "5.0.3",
|
|
37
37
|
"ws": "8.13.0"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"directory": "test/typescript"
|
|
60
60
|
},
|
|
61
61
|
"types": "index.d.ts",
|
|
62
|
-
"version": "7.1.
|
|
62
|
+
"version": "7.1.7"
|
|
63
63
|
}
|