From ca920a47bc885e1874f8961a3354422bc5cdd0c3 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Thu, 16 Nov 2017 03:02:44 -0800 Subject: [PATCH] Manager: remove obsolete comment --- clientgui/AsyncRPC.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/clientgui/AsyncRPC.cpp b/clientgui/AsyncRPC.cpp index af29407fee..ee946e79d6 100644 --- a/clientgui/AsyncRPC.cpp +++ b/clientgui/AsyncRPC.cpp @@ -637,11 +637,7 @@ int CMainDocument::RequestRPC(ASYNC_RPC_REQUEST& request, bool hasPriority) { // posting of more RPC requests while in this dialog, to prevent // undesirable recursion. // - - // Ideally we don't want dialogs while autoattach is in progress. - // But adding the following check causes a "2 RPCS at once" asser. - - if (m_RPCWaitDlg /* && !autoattach_in_progress()*/ ) { + if (m_RPCWaitDlg) { response = m_RPCWaitDlg->ShowModal(); // Remember time the dialog was closed for use by RunPeriodicRPCs() m_dtLasAsyncRPCDlgTime = wxDateTime::Now();