Skip to content

Commit 7f4d40d

Browse files
committed
chore(waku): Enable message missing verification flag
1 parent 9a52339 commit 7f4d40d

File tree

1 file changed

+19
-16
lines changed

1 file changed

+19
-16
lines changed

src/status_im/contexts/profile/config.cljs

+19-16
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,25 @@
3333
(defn create
3434
[]
3535
(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?)))
5255

5356
(defn strip-file-prefix
5457
[path]

0 commit comments

Comments
 (0)