You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IntersectMBO/cardano-cli#773 motivates a query to obtain the maximum major protocol version supported by one's node. The goal of this ticket is to add such a query.
It is part of the (partial) ConsensusConfig, e.g. for Praos:
Uh oh!
There was an error while loading. Please reload this page.
IntersectMBO/cardano-cli#773 motivates a query to obtain the maximum major protocol version supported by one's node. The goal of this ticket is to add such a query.
It is part of the (partial)
ConsensusConfig
, e.g. for Praos:ouroboros-consensus/ouroboros-consensus-protocol/src/ouroboros-consensus-protocol/Ouroboros/Consensus/Protocol/Praos.hs
Lines 199 to 201 in 61c990c
There are at least two ways to accomplish this:
Add a Shelley
BlockQuery
constructor to get just theMaxMajorProtVer
.Most direct and least amount of work, but ad-hoc.
Add a
GetConsensusConfig
query, similar toGetLedgerConfig
as added in Add newGetLedgerConfig
query #1394.Potentially more principled and avoiding additional ad-hoc queries for part of the
ConsensusConfig
, but more work, and maybe YAGNI.EDIT: Probably shouldn't go with this option: Downgrade
GetLedgerConfig
to a debug query #1478The text was updated successfully, but these errors were encountered: