Merge pull request #4956 from joostjager/htlc-attempt-id

lnrpc: add htlc attempt id
This commit is contained in:
Conner Fromknecht 2021-01-27 17:01:08 -08:00 committed by GitHub
commit 626e732f9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 795 additions and 771 deletions

View File

@ -524,6 +524,11 @@
"lnrpcHTLCAttempt": {
"type": "object",
"properties": {
"attempt_id": {
"type": "string",
"format": "uint64",
"description": "The unique ID that is used for this attempt."
},
"status": {
"$ref": "#/definitions/HTLCAttemptHTLCStatus",
"description": "The status of the HTLC."

View File

@ -861,6 +861,7 @@ func (r *RouterBackend) MarshalHTLCAttempt(
}
rpcAttempt := &lnrpc.HTLCAttempt{
AttemptId: htlc.AttemptID,
AttemptTimeNs: MarshalTimeNano(htlc.AttemptTime),
Route: route,
}

File diff suppressed because it is too large Load Diff

View File

@ -3146,6 +3146,9 @@ message Payment {
}
message HTLCAttempt {
// The unique ID that is used for this attempt.
uint64 attempt_id = 7;
enum HTLCStatus {
IN_FLIGHT = 0;
SUCCEEDED = 1;

View File

@ -3851,6 +3851,11 @@
"lnrpcHTLCAttempt": {
"type": "object",
"properties": {
"attempt_id": {
"type": "string",
"format": "uint64",
"description": "The unique ID that is used for this attempt."
},
"status": {
"$ref": "#/definitions/HTLCAttemptHTLCStatus",
"description": "The status of the HTLC."