Skip to content

Commit 6433ecb

Browse files
refi93danielmain
authored andcommitted
fix(staking): fix delegations with stake key (de)registrations being omitted from activity (#713)
1 parent 5ead84f commit 6433ecb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

apps/browser-extension-wallet/src/views/browser-view/features/activity/helpers/common-tx-transformer.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,12 @@ const splitDelegationTx = (tx: TransformedActivity): TransformedTransactionActiv
7070
];
7171
}
7272

73-
return [];
73+
return [
74+
{
75+
...tx,
76+
type: 'delegation'
77+
}
78+
];
7479
};
7580

7681
const transformTransactionStatus = (status: Wallet.TransactionStatus): ActivityStatus => {

0 commit comments

Comments
 (0)