Skip to content

Commit

Permalink
fix(staking): fix delegations with stake key (de)registrations being …
Browse files Browse the repository at this point in the history
…omitted from activity (#713)
  • Loading branch information
refi93 authored and danielmain committed Nov 8, 2023
1 parent 5ead84f commit 6433ecb
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,12 @@ const splitDelegationTx = (tx: TransformedActivity): TransformedTransactionActiv
];
}

return [];
return [
{
...tx,
type: 'delegation'
}
];
};

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

0 comments on commit 6433ecb

Please sign in to comment.