From 000a10f8cff98e3025d3b7658245fb50dbcf5a6b Mon Sep 17 00:00:00 2001 From: Samuel Leathers Date: Thu, 21 Jul 2022 08:47:33 -0400 Subject: [PATCH] bump babbage to report it supports 7.1 in block header --- cardano-node/src/Cardano/Node/Protocol/Cardano.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cardano-node/src/Cardano/Node/Protocol/Cardano.hs b/cardano-node/src/Cardano/Node/Protocol/Cardano.hs index 36e0d07b111..539b43b64bc 100644 --- a/cardano-node/src/Cardano/Node/Protocol/Cardano.hs +++ b/cardano-node/src/Cardano/Node/Protocol/Cardano.hs @@ -198,7 +198,7 @@ mkSomeConsensusProtocolCardano NodeByronProtocolConfiguration { -- version that this node will declare that it understands, when it -- is in the Alonzo era. That is, it is the version of protocol -- /after/ Alonzo, i.e. Babbage. - alonzoProtVer = ProtVer 7 0, + alonzoProtVer = ProtVer 7 1, alonzoMaxTxCapacityOverrides = TxLimits.mkOverrides TxLimits.noOverridesMeasure } @@ -207,7 +207,7 @@ mkSomeConsensusProtocolCardano NodeByronProtocolConfiguration { -- version that this node will declare that it understands, when it -- is in the Babbage era. Since Babbage is currently the last known -- protocol version then this is also the Babbage protocol version. - Praos.babbageProtVer = ProtVer 7 0, + Praos.babbageProtVer = ProtVer 7 1, Praos.babbageMaxTxCapacityOverrides = TxLimits.mkOverrides TxLimits.noOverridesMeasure }