Skip to content

Commit

Permalink
fixup! feat(cardano-services): add stake pools metrics computation job
Browse files Browse the repository at this point in the history
  • Loading branch information
iccicci committed May 29, 2023
1 parent 45fdfde commit c934ab9
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -16,12 +16,12 @@ describe('stakePoolMetricsHandler', () => {

describe('savePoolMetrics', () => {
const partialExpectedRecord = {
activeSize: '0.0005',
activeSize: 0.0005,
activeStake: 42_000_000n,
apy: 0,
livePledge: 23_000_000n,
liveSaturation: '0.002',
liveSize: '0.0005',
liveSaturation: 0.002,
liveSize: 0.0005,
liveStake: 42_000_000n,
stakePoolId: 'test_pool '
};
Expand Down

0 comments on commit c934ab9

Please sign in to comment.