Skip to content

Commit

Permalink
BATM-5013 - LND sendpayment should contain remote transaction id - Fi…
Browse files Browse the repository at this point in the history
…x getCustomRecords
  • Loading branch information
Maros Silady committed Nov 29, 2023
1 parent 6cb2ffa commit 93bd0c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private Payment.FeeLimit getFeeLimit(String fee) {
private static Map<Long, byte[]> getCustomRecords(String description) {
Map<Long, byte[]> customRecords = new HashMap<>();
if (description != null && !description.trim().isEmpty()) {
customRecords.put(1L, description.getBytes());
customRecords.put(70000L, description.getBytes());
}
return customRecords;
}
Expand Down

0 comments on commit 93bd0c9

Please sign in to comment.