mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +00:00
temp trade history fix
This commit is contained in:
parent
02bc6060f5
commit
c9a064e3f6
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class _TransactionsListState extends ConsumerState<TransactionsList> {
|
|||
e.statusObject != null &&
|
||||
(e.statusObject!.payinHash == tx.txid ||
|
||||
e.statusObject!.payoutHash == tx.txid));
|
||||
if (matchingTrades.isNotEmpty) {
|
||||
if (tx.txType == "Sent" && matchingTrades.isNotEmpty) {
|
||||
final trade = matchingTrades.first;
|
||||
return Container(
|
||||
decoration: BoxDecoration(
|
||||
|
|
Loading…
Reference in a new issue