@@ -21,7 +21,6 @@ import Cardano.CLI.Types.Common
21
21
import Data.Foldable
22
22
import Options.Applicative hiding (help , str )
23
23
import qualified Options.Applicative as Opt
24
- import qualified Options.Applicative.Help as H
25
24
import Prettyprinter (line )
26
25
27
26
{- HLINT ignore "Use <$>" -}
@@ -49,13 +48,13 @@ pTransactionCmds era' envCli =
49
48
[ pretty @ String " Build a transaction (low-level, inconvenient)"
50
49
, line
51
50
, line
52
- , H. yellow $
53
- mconcat
54
- [ " Please note "
55
- , H. underline " the order"
56
- , " of some cmd options is crucial. If used incorrectly may produce "
57
- , " undesired tx body. See nested [] notation above for details."
58
- ]
51
+ , -- H.yellow $
52
+ mconcat
53
+ [ " Please note "
54
+ , {- H.underline -} " the order"
55
+ , " of some cmd options is crucial. If used incorrectly may produce "
56
+ , " undesired tx body. See nested [] notation above for details."
57
+ ]
59
58
]
60
59
, pTransactionBuildCmd era' envCli
61
60
, forShelleyBasedEraInEon era' Nothing (`pTransactionBuildEstimateCmd` envCli)
@@ -157,13 +156,13 @@ pTransactionBuildCmd sbe envCli = do
157
156
[ pretty @ String " Build a balanced transaction (automatically calculates fees)"
158
157
, line
159
158
, line
160
- , H. yellow $
161
- mconcat
162
- [ " Please note "
163
- , H. underline " the order"
164
- , " of some cmd options is crucial. If used incorrectly may produce "
165
- , " undesired tx body. See nested [] notation above for details."
166
- ]
159
+ , -- H.yellow $
160
+ mconcat
161
+ [ " Please note "
162
+ , {- H.underline -} " the order"
163
+ , " of some cmd options is crucial. If used incorrectly may produce "
164
+ , " undesired tx body. See nested [] notation above for details."
165
+ ]
167
166
]
168
167
where
169
168
pCmd era' = do
@@ -216,13 +215,13 @@ pTransactionBuildEstimateCmd eon' _envCli = do
216
215
" Build a balanced transaction without access to a live node (automatically estimates fees)"
217
216
, line
218
217
, line
219
- , H. yellow $
220
- mconcat
221
- [ " Please note "
222
- , H. underline " the order"
223
- , " of some cmd options is crucial. If used incorrectly may produce "
224
- , " undesired tx body. See nested [] notation above for details."
225
- ]
218
+ , -- H.yellow $
219
+ mconcat
220
+ [ " Please note "
221
+ , {- H.underline -} " the order"
222
+ , " of some cmd options is crucial. If used incorrectly may produce "
223
+ , " undesired tx body. See nested [] notation above for details."
224
+ ]
226
225
]
227
226
where
228
227
pCmd :: Exp. Era era -> Parser (TransactionCmds era )
0 commit comments