mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-22 15:19:11 +00:00
fix duplicate keys error
This commit is contained in:
parent
fc9e4d35dd
commit
7e2160d7cc
1 changed files with 2 additions and 2 deletions
|
@ -469,7 +469,7 @@ class _ContactDetailsViewState extends ConsumerState<ContactDetailsView> {
|
||||||
..._cachedTransactions.map(
|
..._cachedTransactions.map(
|
||||||
(e) => TransactionCard(
|
(e) => TransactionCard(
|
||||||
key: Key(
|
key: Key(
|
||||||
"contactDetailsTransaction_${e.item2.txid}_cardKey"),
|
"contactDetailsTransaction_${e.item1}_${e.item2.txid}_cardKey"),
|
||||||
transaction: e.item2,
|
transaction: e.item2,
|
||||||
walletId: e.item1,
|
walletId: e.item1,
|
||||||
),
|
),
|
||||||
|
@ -499,7 +499,7 @@ class _ContactDetailsViewState extends ConsumerState<ContactDetailsView> {
|
||||||
..._cachedTransactions.map(
|
..._cachedTransactions.map(
|
||||||
(e) => TransactionCard(
|
(e) => TransactionCard(
|
||||||
key: Key(
|
key: Key(
|
||||||
"contactDetailsTransaction_${e.item2.txid}_cardKey"),
|
"contactDetailsTransaction_${e.item1}_${e.item2.txid}_cardKey"),
|
||||||
transaction: e.item2,
|
transaction: e.item2,
|
||||||
walletId: e.item1,
|
walletId: e.item1,
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue