From 480ad18b2e31af60022a13ffda6a3a2015458b5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogdan-=C8=98tefan=20Neac=C5=9Fu?= Date: Thu, 4 Nov 2021 16:33:18 +0200 Subject: [PATCH] Put client_address and id in the correct order (#875) --- gateway/src/node/storage/inboxes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway/src/node/storage/inboxes.rs b/gateway/src/node/storage/inboxes.rs index 016161c0c1..d40ae5681f 100644 --- a/gateway/src/node/storage/inboxes.rs +++ b/gateway/src/node/storage/inboxes.rs @@ -75,8 +75,8 @@ impl InboxManager { ORDER BY id ASC LIMIT ?; "#, - start_after, client_address_bs58, + start_after, limit ) .fetch_all(&self.connection_pool)