We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d111be commit 03b2647Copy full SHA for 03b2647
packages/wallet/src/services/DelegationTracker/DelegationTracker.ts
@@ -139,7 +139,13 @@ export const createDelegationTracker = ({
139
transactionsTracker,
140
rewardAccountAddresses$,
141
slotEpochCalc$,
142
- [...Cardano.RegAndDeregCertificateTypes, ...Cardano.StakeDelegationCertificateTypes]
+ [
143
+ ...new Set([
144
+ ...Cardano.RegAndDeregCertificateTypes,
145
+ ...Cardano.StakeDelegationCertificateTypes,
146
+ ...Cardano.VoteDelegationCredentialCertificateTypes
147
+ ])
148
+ ]
149
).pipe(tap((transactionsWithEpochs) => logger.debug(`Found ${transactionsWithEpochs.length} staking transactions`)));
150
151
const rewardsHistory$ = new TrackerSubject(
0 commit comments