Skip to content

Commit

Permalink
bugfix: send & recv token address
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoch05 committed Jan 8, 2025
1 parent b548265 commit 6127ec7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apollo/src/lnv2/lnv2.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ export class Lnv2Service implements OnModuleInit {
feeToken: firstPendingRecord.feeToken,
responseTxHash: '',
reason: '',
sendTokenAddress: record.sourceToken,
recvTokenAddress: firstPendingRecord.recvTokenAddress,
sendTokenAddress: record.sourceToken.toLowerCase(),
recvTokenAddress: firstPendingRecord.recvTokenAddress.toLowerCase(),
endTxHash: '',
confirmedBlocks: '',
});
Expand Down Expand Up @@ -332,8 +332,8 @@ export class Lnv2Service implements OnModuleInit {
feeToken: tokenPair.fromSymbol,
responseTxHash: '',
reason: '',
sendTokenAddress: record.sourceToken,
recvTokenAddress: record.targetToken,
sendTokenAddress: record.sourceToken.toLowerCase(),
recvTokenAddress: record.targetToken.toLowerCase(),
endTxHash: '',
confirmedBlocks: '',
});
Expand Down

0 comments on commit 6127ec7

Please sign in to comment.