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
35 changes: 0 additions & 35 deletions .github/workflows/node-dev.yaml

This file was deleted.

5 changes: 5 additions & 0 deletions src/payment/models/crypto-input/defi-input.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ export class DeFiInputService extends CryptoInputService {
await this.sendFeeUtxo(token.owner);
}
} else {
// ignoring dust DFI transactions
if (asset === 'DFI' && amount < Config.blockchain.default.minTxAmount) {
continue;
}

// check for min. deposit
// TODO: remove temporary DUSD pool fix
const usdtAmount = asset === 'DUSD' ? amount : await this.client.testCompositeSwap(asset, 'USDT', amount);
Expand Down