From 125de5127b91c972f084b18fc0a269c0930867bb Mon Sep 17 00:00:00 2001 From: Hwee-Boon Yar Date: Wed, 6 Apr 2022 12:46:37 +0800 Subject: [PATCH] Fix broken build --- AlphaWallet/BlockscanChat/BlockscanChatService.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AlphaWallet/BlockscanChat/BlockscanChatService.swift b/AlphaWallet/BlockscanChat/BlockscanChatService.swift index 5da49cbfc..143bbaa99 100644 --- a/AlphaWallet/BlockscanChat/BlockscanChatService.swift +++ b/AlphaWallet/BlockscanChat/BlockscanChatService.swift @@ -84,7 +84,7 @@ class BlockscanChatService { let isCurrentRealAccount = account.address == address guard isCurrentRealAccount else { return } delegate?.openBlockscanChat(url: Constants.BlockscanChat.blockscanChatWebUrl.appendingPathComponent(address.eip55String), for: self) - let delayForUserToClearChats = 10 + let delayForUserToClearChats: Double = 10 DispatchQueue.main.asyncAfter(deadline: .now() + delayForUserToClearChats) { [weak self] in self?.refreshUnreadCountForCurrentWallet() }