We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GenesisParameters
In ADP-356 we are integrating with Hard Fork Combinator.
In each wallet checkpoint we are currently storing:
checkpointGenesisHash BlockId sql=genesis_hash checkpointGenesisStart UTCTime sql=genesis_start checkpointFeePolicyUnused Text sql=fee_policy checkpointSlotLength Word64 sql=slot_length checkpointEpochLength Word32 sql=epoch_length checkpointTxMaxSizeUnused Word16 sql=tx_max_size checkpointEpochStability Word32 sql=epoch_stability checkpointActiveSlotCoeff Double sql=active_slot_coeff
Note that
epochLength
slotLength
epochStability
k
securityParam
TxParameters
genesisHash
I think we should remove everything but genesisHash.
#1983
The text was updated successfully, but these errors were encountered:
Maybe we should abort this for now because of https://input-output-rnd.slack.com/archives/GBT05825V/p1596197796271100?thread_ts=1596197783.271000&cid=GBT05825V
Sorry, something went wrong.
Yes when we have a better db migration system we can revisit this.
Anviking
No branches or pull requests
Context
In ADP-356 we are integrating with Hard Fork Combinator.
In each wallet checkpoint we are currently storing:
Note that
epochLength
,slotLength
may change in the byron-to-shelley transition, but I don't think wallet checkpoints are suitable for keeping track of this.epochStability
(i.e.k
/securityParam
) is completely staticTxParameters
in a separate tablegenesisHash
of the stored genesis checkpoint (seems useful)Decision
I think we should remove everything but
genesisHash
.Acceptance Criteria
Development
#1983
QA
The text was updated successfully, but these errors were encountered: