diff --git a/html_source/src/app/pages/wallet/tabs/history/history.component.ts b/html_source/src/app/pages/wallet/tabs/history/history.component.ts index 691fa8f9..488bafd0 100644 --- a/html_source/src/app/pages/wallet/tabs/history/history.component.ts +++ b/html_source/src/app/pages/wallet/tabs/history/history.component.ts @@ -468,8 +468,8 @@ export class HistoryComponent implements OnInit, OnDestroy { isInitiator(transaction: Transaction): boolean { const { employed_entries: { spent= [] } } = transaction; - return Boolean(spent?.find(({ asset_id, index }) => { - return index === 0 && asset_id === zanoAssetInfo.asset_id; + return Boolean(spent?.find(({ index }) => { + return index === 0; })); }