feat(connector)_: turn feature flag on (#15692)
This commit is contained in:
parent
8f3a2e8189
commit
3a12fd3d84
|
@ -3,7 +3,7 @@ import os
|
|||
|
||||
const DEFAULT_FLAG_DAPPS_ENABLED = false
|
||||
const DEFAULT_FLAG_SWAP_ENABLED = false
|
||||
const DEFAULT_FLAG_CONNECTOR_ENABLED = false
|
||||
const DEFAULT_FLAG_CONNECTOR_ENABLED = true
|
||||
|
||||
proc boolToEnv(defaultValue: bool): string =
|
||||
return if defaultValue: "1" else: "0"
|
||||
|
@ -43,4 +43,4 @@ QtObject:
|
|||
return self.connectorEnabled
|
||||
|
||||
QtProperty[bool] connectorEnabled:
|
||||
read = getConnectorEnabled
|
||||
read = getConnectorEnabled
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit cef02d31b80f9a066b4d0ee0efbd78ed21bb5237
|
||||
Subproject commit 30fee0cfd390b105a450e911e667311b582e67d0
|
Loading…
Reference in New Issue