File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
cardano-db/src/Cardano/Db
cardano-db-sync/src/Cardano/DbSync/Era/Shelley Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -464,11 +464,11 @@ insertParamUpdate _tracer txId (Shelley.Update (Shelley.ProposedPPUpdates umap)
464
464
, DB. paramUpdateKeyDeposit = fromIntegral . Shelley. unCoin <$> strictMaybeToMaybe (Shelley. _keyDeposit pmap)
465
465
, DB. paramUpdatePoolDeposit = fromIntegral . Shelley. unCoin <$> strictMaybeToMaybe (Shelley. _poolDeposit pmap)
466
466
, DB. paramUpdateMaxEpoch = unEpochNo <$> strictMaybeToMaybe (Shelley. _eMax pmap)
467
- , DB. paramUpdateNOptimal = fromIntegral <$> strictMaybeToMaybe (Shelley. _nOpt pmap)
467
+ , DB. paramUpdateDesiredPoolCount = fromIntegral <$> strictMaybeToMaybe (Shelley. _nOpt pmap)
468
468
, DB. paramUpdateInfluence = fromRational <$> strictMaybeToMaybe (Shelley. _a0 pmap)
469
469
, DB. paramUpdateMonetaryExpandRate = Shelley. unitIntervalToDouble <$> strictMaybeToMaybe (Shelley. _rho pmap)
470
470
, DB. paramUpdateTreasuryGrowthRate = Shelley. unitIntervalToDouble <$> strictMaybeToMaybe (Shelley. _tau pmap)
471
- , DB. paramUpdateActiveSlotCoeff = Shelley. unitIntervalToDouble <$> strictMaybeToMaybe (Shelley. _d pmap)
471
+ , DB. paramUpdateDecentralisation = Shelley. unitIntervalToDouble <$> strictMaybeToMaybe (Shelley. _d pmap)
472
472
, DB. paramUpdateEntropy = Shelley. nonceToBytes <$> strictMaybeToMaybe (Shelley. _extraEntropy pmap)
473
473
, DB. paramUpdateProtocolVersion = textShow <$> strictMaybeToMaybe (Shelley. _protocolVersion pmap)
474
474
, DB. paramUpdateMinUTxOValue = fromIntegral . Shelley. unCoin <$> strictMaybeToMaybe (Shelley. _minUTxOValue pmap)
Original file line number Diff line number Diff line change @@ -285,11 +285,11 @@ share
285
285
keyDeposit Word64 Maybe sqltype=lovelace
286
286
poolDeposit Word64 Maybe sqltype=lovelace
287
287
maxEpoch Word64 Maybe sqltype=uinteger
288
- nOptimal Word64 Maybe sqltype=uinteger
288
+ desiredPoolCount Word64 Maybe sqltype=uinteger
289
289
influence Double Maybe -- sqltype=rational
290
290
monetaryExpandRate Double Maybe -- sqltype=interval
291
291
treasuryGrowthRate Double Maybe -- sqltype=interval
292
- activeSlotCoeff Double Maybe -- sqltype=interval
292
+ decentralisation Double Maybe -- sqltype=interval
293
293
entropy ByteString Maybe sqltype=hash32type
294
294
protocolVersion Text Maybe
295
295
minUTxOValue Word64 Maybe sqltype=lovelace
You can’t perform that action at this time.
0 commit comments