lnrpc: add max_htlc to RoutingPolicy

This commit is contained in:
Valentine Wallace
2018-12-08 17:43:25 -08:00
parent 20b3114100
commit e62a8f3269
3 changed files with 573 additions and 559 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1597,6 +1597,7 @@ message RoutingPolicy {
int64 fee_base_msat = 3 [json_name = "fee_base_msat"];
int64 fee_rate_milli_msat = 4 [json_name = "fee_rate_milli_msat"];
bool disabled = 5 [json_name = "disabled"];
uint64 max_htlc = 6 [json_name = "max_htlc"];
}
/**

View File

@@ -2815,6 +2815,10 @@
"disabled": {
"type": "boolean",
"format": "boolean"
},
"max_htlc": {
"type": "string",
"format": "uint64"
}
}
},