Skip to content

Commit

Permalink
remove deposit/withdraw transaction types temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan-tbd committed Aug 27, 2024
1 parent a026294 commit fb2b108
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions lib/features/transaction/transaction.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,12 @@ class Transaction {
}
}

type = (payinCurrency == 'USDC')
? TransactionType.withdraw
: (payoutCurrency == 'USDC')
? TransactionType.deposit
: type;
// TODO(ethan-tbd): uncomment once deposit/withdraw is supported
// type = (payinCurrency == 'USDC')
// ? TransactionType.withdraw
// : (payoutCurrency == 'USDC')
// ? TransactionType.deposit
// : type;

return Transaction(
payinAmount: payinAmount,
Expand Down

0 comments on commit fb2b108

Please sign in to comment.