We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a47a954 commit b051447Copy full SHA for b051447
cardano-node/app/cardano-node.hs
@@ -29,7 +29,7 @@ main = toplevelExceptionHandler $ do
29
cmd <- Opt.customExecParser p opts
30
31
case cmd of
32
- RunCmd args -> runRunCommand args
+ RunCmd args -> runNode args
33
TraceDocumentation tdc -> runTraceDocumentationCmd tdc
34
VersionCmd -> runVersionCommand
35
@@ -95,9 +95,6 @@ runVersionCommand =
95
renderVersion = Text.pack . showVersion
96
97
98
-runRunCommand :: PartialNodeConfiguration -> IO ()
99
-runRunCommand pnc = liftIO $ runNode pnc
100
-
101
command' :: String -> String -> Parser a -> Mod CommandFields a
102
command' c descr p =
103
command c $ info (p <**> helper)
0 commit comments