|
33 | 33 | (defn create
|
34 | 34 | []
|
35 | 35 | (let [log-enabled? (boolean (not-empty config/log-level))]
|
36 |
| - (assoc (login) |
37 |
| - :deviceName (native-module/get-installation-name) |
38 |
| - :rootDataDir (native-module/backup-disabled-data-dir) |
39 |
| - :rootKeystoreDir (native-module/keystore-dir) |
40 |
| - :logLevel (when log-enabled? config/log-level) |
41 |
| - :logEnabled log-enabled? |
42 |
| - :logFilePath (native-module/log-file-directory) |
43 |
| - :verifyTransactionURL config/verify-transaction-url |
44 |
| - :verifyENSURL config/verify-ens-url |
45 |
| - :verifyENSContractAddress config/verify-ens-contract-address |
46 |
| - :verifyTransactionChainID config/verify-transaction-chain-id |
47 |
| - :wakuV2LightClient true |
48 |
| - :wakuV2Fleet config/fleet |
49 |
| - :wakuV2EnableStoreConfirmationForMessagesSent false |
50 |
| - :previewPrivacy config/blank-preview? |
51 |
| - :testNetworksEnabled config/test-networks-enabled?))) |
| 36 | + (assoc |
| 37 | + (login) |
| 38 | + :deviceName (native-module/get-installation-name) |
| 39 | + :rootDataDir (native-module/backup-disabled-data-dir) |
| 40 | + :rootKeystoreDir (native-module/keystore-dir) |
| 41 | + :logLevel (when log-enabled? config/log-level) |
| 42 | + :logEnabled log-enabled? |
| 43 | + :logFilePath (native-module/log-file-directory) |
| 44 | + :verifyTransactionURL config/verify-transaction-url |
| 45 | + :verifyENSURL config/verify-ens-url |
| 46 | + :verifyENSContractAddress config/verify-ens-contract-address |
| 47 | + :verifyTransactionChainID config/verify-transaction-chain-id |
| 48 | + :wakuV2LightClient true |
| 49 | + :wakuV2Fleet config/fleet |
| 50 | + ;; NOTE: https://github.com/status-im/status-go/pull/5570#discussion_r1690794119 |
| 51 | + :wakuV2EnableMissingMessageVerification true |
| 52 | + :wakuV2EnableStoreConfirmationForMessagesSent false |
| 53 | + :previewPrivacy config/blank-preview? |
| 54 | + :testNetworksEnabled config/test-networks-enabled?))) |
52 | 55 |
|
53 | 56 | (defn strip-file-prefix
|
54 | 57 | [path]
|
|
0 commit comments