File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ export function responseXRPPaymentNonexistence(
3434 lowerBoundaryBlock : BlockResult ,
3535 request : XRPPaymentNonexistence_Request ,
3636) {
37- Logger . debug ( "Processing transactions to prove non existence " + dbTransactions . length ) ;
37+ Logger . debug (
38+ 'Processing transactions to prove non existence ' + dbTransactions . length ,
39+ ) ;
3840 for ( const dbTransaction of dbTransactions ) {
3941 let fullTxData : XrpTransaction ;
4042 try {
Original file line number Diff line number Diff line change @@ -105,9 +105,12 @@ export function responseXRPPayment(
105105 intendedReceivedAmount :
106106 paymentSummary . response . intendedReceivingAmount . toString ( ) ,
107107 hasMemoData : paymentSummary . response . hasMemoData ,
108- firstMemoData : '0x' + ( paymentSummary . response . hasMemoData
109- ? paymentSummary . response . memoData
110- : '' ) . toLowerCase ( ) ,
108+ firstMemoData :
109+ '0x' +
110+ ( paymentSummary . response . hasMemoData
111+ ? paymentSummary . response . memoData
112+ : ''
113+ ) . toLowerCase ( ) ,
111114 hasDestinationTag : paymentSummary . response . hasDestinationTag ,
112115 destinationTag : paymentSummary . response . hasDestinationTag
113116 ? paymentSummary . response . destinationTag . toString ( )
You can’t perform that action at this time.
0 commit comments