Skip to content

Commit

Permalink
Remove defaulting to 8093 for the deposit wallet data service port
Browse files Browse the repository at this point in the history
  • Loading branch information
paolino committed Sep 27, 2024
1 parent 7d14ae2 commit 6f79090
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/exe/lib/Cardano/Wallet/Application/CLI.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1527,13 +1527,12 @@ portOption = optionT $ mempty
<> value (Port 8_090)
<> showDefaultWith showT

-- | [--deposit-port=INT], default: 8093
-- | [--deposit-port=INT]
depositPortOption :: Parser (Port "Deposit Wallet")
depositPortOption = optionT $ mempty
<> long "deposit-port"
<> metavar "INT"
<> help "port used for serving the deposit wallet JSON API."
<> value (Port 8_093)
<> showDefaultWith showT

-- | [--shutdown-handler]
Expand Down

0 comments on commit 6f79090

Please sign in to comment.