From 0f4b2074533753c0fcc3271d103ef5004b769159 Mon Sep 17 00:00:00 2001 From: Carlos LopezDeLara <64222734+CarlosLopezDeLara@users.noreply.github.com> Date: Tue, 24 Oct 2023 15:51:19 -0600 Subject: [PATCH] Fix delegating to always-no-confidence Resolves https://github.com/input-output-hk/cardano-cli/issues/402 Now it carries the corresponding [3] `[9, [0, h'EF1785CF18928F8353C90E76B7A8FC60855472D31A0EA1C1C774AB01'], [3]]` --- cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs index de393ee5fa..2b442a619b 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs @@ -3035,7 +3035,7 @@ pVoteDelegationTarget = asum [ VoteDelegationTargetOfDRep <$> pDRepHashSource , VoteDelegationTargetOfAbstain <$ pAlwaysAbstain - , VoteDelegationTargetOfAbstain <$ pAlwaysNoConfidence + , VoteDelegationTargetOfNoConfidence <$ pAlwaysNoConfidence ] pAlwaysAbstain :: Parser ()