diff --git a/AlphaWallet/Tokens/Views/TokenInstanceWebView.swift b/AlphaWallet/Tokens/Views/TokenInstanceWebView.swift index e19beaa62..3144dbe52 100644 --- a/AlphaWallet/Tokens/Views/TokenInstanceWebView.swift +++ b/AlphaWallet/Tokens/Views/TokenInstanceWebView.swift @@ -483,9 +483,7 @@ extension TokenInstanceWebView { func signMessage(with type: SignMessageType, account: AlphaWallet.Address, callbackID: Int) { guard let navigationController = delegate?.navigationControllerFor(tokenInstanceWebView: self) else { return } - - let keystore = try! EtherKeystore(analyticsCoordinator: NoOpAnalyticsService()) - + let keystore = try! EtherKeystore(analyticsCoordinator: analyticsCoordinator) firstly { SignMessageCoordinator.promise(analyticsCoordinator: analyticsCoordinator, navigationController: navigationController, keystore: keystore, signType: type, account: account, source: .tokenScript) }.done { data in