From f9a6110c69d25ca91ee03529cfdaba023eb2fa2a Mon Sep 17 00:00:00 2001 From: nymkappa Date: Tue, 8 Feb 2022 11:20:19 +0900 Subject: [PATCH] Remove debug return which break the UX the first time we open mempool --- backend/src/api/blocks.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/src/api/blocks.ts b/backend/src/api/blocks.ts index cd72d91e0..198f2a204 100644 --- a/backend/src/api/blocks.ts +++ b/backend/src/api/blocks.ts @@ -301,8 +301,6 @@ class Blocks { if (memPool.isInSync()) { diskCache.$saveCacheToDisk(); } - - return; } }