Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a520320

Browse files
committedSep 18, 2024··
chore(waku): Enable message missing verification flag
1 parent 9068801 commit a520320

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
@@ -34,22 +34,25 @@
3434
(defn create
3535
[]
3636
(let [log-enabled? (boolean (not-empty config/log-level))]
37-
(assoc (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-
:wakuV2EnableStoreConfirmationForMessagesSent false
51-
:previewPrivacy config/blank-preview?
52-
:testNetworksEnabled config/test-networks-enabled?)))
37+
(assoc
38+
(login)
39+
:deviceName (native-module/get-installation-name)
40+
:rootDataDir (native-module/backup-disabled-data-dir)
41+
:rootKeystoreDir (native-module/keystore-dir)
42+
:logLevel (when log-enabled? config/log-level)
43+
:logEnabled log-enabled?
44+
:logFilePath (native-module/log-file-directory)
45+
:verifyTransactionURL config/verify-transaction-url
46+
:verifyENSURL config/verify-ens-url
47+
:verifyENSContractAddress config/verify-ens-contract-address
48+
:verifyTransactionChainID config/verify-transaction-chain-id
49+
:wakuV2LightClient true
50+
:wakuV2Fleet config/fleet
51+
;; NOTE: https://github.com/status-im/status-go/pull/5570#discussion_r1690794119
52+
:wakuV2EnableMissingMessageVerification true
53+
:wakuV2EnableStoreConfirmationForMessagesSent false
54+
:previewPrivacy config/blank-preview?
55+
:testNetworksEnabled config/test-networks-enabled?)))
5356

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

0 commit comments

Comments
 (0)
Please sign in to comment.