Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
624 changes: 317 additions & 307 deletions lnrpc/rpc.pb.go

Large diffs are not rendered by default.

80 changes: 48 additions & 32 deletions lnrpc/rpc.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions lnrpc/rpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,9 @@ message Transaction {

/// Fees paid for this transaction
int64 total_fees = 7 [ json_name = "total_fees" ];

/// Addresses that received funds for this transaction
repeated string dest_addresses = 8 [ json_name = "dest_addresses" ];
}
message GetTransactionsRequest {
}
Expand Down
7 changes: 7 additions & 0 deletions lnrpc/rpc.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2018,6 +2018,13 @@
"type": "string",
"format": "int64",
"title": "/ Fees paid for this transaction"
},
"dest_addresses": {
"type": "array",
"items": {
"type": "string"
},
"title": "/ Addresses that received funds for this transaction"
}
}
},
Expand Down
Loading