From ff038b492c6fcaed702ce3f5d7c90c3623bf9aa5 Mon Sep 17 00:00:00 2001 From: JRoberts <8711996+jr-simplex@users.noreply.github.com> Date: Tue, 24 Jan 2023 19:59:32 +0400 Subject: [PATCH] fix DEL_RCVQ queue parameter type (#621) --- src/Simplex/Messaging/Agent/Protocol.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Simplex/Messaging/Agent/Protocol.hs b/src/Simplex/Messaging/Agent/Protocol.hs index b553ca9bb..39bae0a24 100644 --- a/src/Simplex/Messaging/Agent/Protocol.hs +++ b/src/Simplex/Messaging/Agent/Protocol.hs @@ -272,7 +272,7 @@ data ACommand (p :: AParty) where SWCH :: ACommand Client OFF :: ACommand Client DEL :: ACommand Client - DEL_RCVQ :: SMPServer -> SMP.SenderId -> Maybe AgentErrorType -> ACommand Agent + DEL_RCVQ :: SMPServer -> SMP.RecipientId -> Maybe AgentErrorType -> ACommand Agent DEL_CONN :: ACommand Agent DEL_USER :: Int64 -> ACommand Agent CHK :: ACommand Client