Compare commits
1 Commits
fix/issue-
...
fix/55-swa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
868f7a6ff8 |
@@ -187,9 +187,11 @@ function renderTransactions(txs) {
|
||||
let i = 0;
|
||||
for (const tx of txs) {
|
||||
const counterparty =
|
||||
tx.direction === "sent" || tx.direction === "contract"
|
||||
? tx.to
|
||||
: tx.from;
|
||||
tx.direction === "contract"
|
||||
? tx.from
|
||||
: tx.direction === "sent"
|
||||
? tx.to
|
||||
: tx.from;
|
||||
const ensName = ensNameMap.get(counterparty) || null;
|
||||
const title = addressTitle(counterparty, state.wallets);
|
||||
const dirLabel = tx.directionLabel;
|
||||
|
||||
Reference in New Issue
Block a user