File tree 7 files changed +11
-11
lines changed
cardano-cli/src/Cardano/CLI
cardano-node/src/Cardano/Node
7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -507,9 +507,9 @@ parseMpcThd =
507
507
508
508
parseProtocolVersion :: Parser ProtocolVersion
509
509
parseProtocolVersion =
510
- ProtocolVersion <$> (parseWord " protocol-version-major" " Protocol verson major." " WORD16" :: Parser Word16 )
511
- <*> (parseWord " protocol-version-minor" " Protocol verson minor." " WORD16" :: Parser Word16 )
512
- <*> (parseWord " protocol-version-alt" " Protocol verson alt." " WORD8" :: Parser Word8 )
510
+ ProtocolVersion <$> (parseWord " protocol-version-major" " Protocol version major." " WORD16" :: Parser Word16 )
511
+ <*> (parseWord " protocol-version-minor" " Protocol version minor." " WORD16" :: Parser Word16 )
512
+ <*> (parseWord " protocol-version-alt" " Protocol version alt." " WORD8" :: Parser Word8 )
513
513
514
514
parseHeavyDelThd :: Parser Byron. LovelacePortion
515
515
parseHeavyDelThd =
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ txSpendGenesisUTxOByronPBFT gc nId sk (ByronAddress bAddr) outs = do
170
170
TxMintNone
171
171
TxScriptValidityNone
172
172
case makeTransactionBody txBodyCont of
173
- Left err -> error $ " Error occured while creating a Byron genesis based UTxO transaction: " <> show err
173
+ Left err -> error $ " Error occurred while creating a Byron genesis based UTxO transaction: " <> show err
174
174
Right txBody -> let bWit = fromByronWitness sk nId txBody
175
175
in makeSignedTransaction [bWit] txBody
176
176
where
@@ -209,7 +209,7 @@ txSpendUTxOByronPBFT nId sk txIns outs = do
209
209
TxMintNone
210
210
TxScriptValidityNone
211
211
case makeTransactionBody txBodyCont of
212
- Left err -> error $ " Error occured while creating a Byron genesis based UTxO transaction: " <> show err
212
+ Left err -> error $ " Error occurred while creating a Byron genesis based UTxO transaction: " <> show err
213
213
Right txBody -> let bWit = fromByronWitness sk nId txBody
214
214
in makeSignedTransaction [bWit] txBody
215
215
Original file line number Diff line number Diff line change @@ -1992,7 +1992,7 @@ pMintMultiAsset balanceExecUnits =
1992
1992
)
1993
1993
where
1994
1994
helpText = " Mint multi-asset value(s) with the multi-asset cli syntax. \
1995
- \You must specifiy a script witness."
1995
+ \You must specify a script witness."
1996
1996
1997
1997
pInvalidBefore :: Parser SlotNo
1998
1998
pInvalidBefore =
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ renderShelleyQueryCmdError err =
127
127
" Consensus mode and era mismatch. Consensus mode: " <> show cMode <>
128
128
" Era: " <> show era
129
129
ShelleyQueryCmdEraMismatch (EraMismatch ledgerEra queryEra) ->
130
- " \n An error mismatch occured ." <> " \n Specified query era: " <> queryEra <>
130
+ " \n An error mismatch occurred ." <> " \n Specified query era: " <> queryEra <>
131
131
" \n Current ledger era: " <> ledgerEra
132
132
ShelleyQueryCmdUnsupportedMode mode -> " Unsupported mode: " <> renderMode mode
133
133
ShelleyQueryCmdPastHorizon e -> " Past horizon: " <> show e
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ parseNodeHostIPv6Address str =
149
149
maybe
150
150
(Left $
151
151
" Failed to parse IPv6 address: " ++ str ++
152
- " . If you want to specify an IPv4 adddress , use --host-addr option." )
152
+ " . If you want to specify an IPv4 address , use --host-addr option." )
153
153
(Right . NodeHostIPv6Address )
154
154
(readMaybe str)
155
155
Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ docChainSyncServerEvent = Documented [
298
298
DocMsg
299
299
(TraceChainSyncServerRead anyProto anyProto)
300
300
[]
301
- " A server read has occured , either for an add block or a rollback"
301
+ " A server read has occurred , either for an add block or a rollback"
302
302
, DocMsg
303
303
(TraceChainSyncServerReadBlocked anyProto anyProto)
304
304
[]
Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ docSubscription = Documented [
290
290
, DocMsg
291
291
(SubscriptionTraceApplicationException anyProto (anyProto :: SomeException ))
292
292
[]
293
- " Application Exception occured ."
293
+ " Application Exception occurred ."
294
294
, DocMsg
295
295
(SubscriptionTraceAllocateSocket anyProto)
296
296
[]
@@ -342,7 +342,7 @@ docDNSResolver = Documented [
342
342
(WithDomainName anyProto
343
343
(DnsTraceLookupException anyProto))
344
344
[]
345
- " A DNS lookup exception occured ."
345
+ " A DNS lookup exception occurred ."
346
346
, DocMsg
347
347
(WithDomainName anyProto
348
348
(DnsTraceLookupAError anyProto))
You can’t perform that action at this time.
0 commit comments