Skip to content

Commit

Permalink
chore(connector): disable connector flag and WS server by default (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
jrainville authored Aug 19, 2024
1 parent ac4990a commit 7e623e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/global/feature_flags.nim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import os

const DEFAULT_FLAG_DAPPS_ENABLED = false
const DEFAULT_FLAG_SWAP_ENABLED = true
const DEFAULT_FLAG_CONNECTOR_ENABLED = true
const DEFAULT_FLAG_CONNECTOR_ENABLED = false

proc boolToEnv(defaultValue: bool): string =
return if defaultValue: "1" else: "0"
Expand Down
4 changes: 2 additions & 2 deletions src/env_cli_vars.nim
Original file line number Diff line number Diff line change
Expand Up @@ -265,12 +265,12 @@ type StatusDesktopConfig = object
name: "USE_MOCKED_KEYCARD"
abbr: "use-mocked-keycard" .}: bool
httpApiEnabled* {.
defaultValue: true
defaultValue: false
desc: "Enable HTTP RPC API"
name: "HTTP_API"
abbr: "http-api" .}: bool
wsApiEnabled* {.
defaultValue: true
defaultValue: false
desc: "Enable WebSocket RPC API"
name: "WS_API"
abbr: "ws-api" .}: bool
Expand Down

0 comments on commit 7e623e0

Please sign in to comment.