This commit is contained in:
Dmitry Zuikov 2023-02-05 07:31:14 +03:00
parent 5bc1893377
commit 2d1d5aec03
1 changed files with 4 additions and 4 deletions

View File

@ -228,11 +228,11 @@ processBlock h = do
here <- liftIO (hasBlock sto blk) <&> isJust here <- liftIO (hasBlock sto blk) <&> isJust
if here then do if here then do
pure ()
-- debug $ "block" <+> pretty blk <+> "is already here" -- debug $ "block" <+> pretty blk <+> "is already here"
processBlock blk -- NOTE: хуже не стало -- unless (h == blk) do
-- FIXME: fugure out if it's really required -- processBlock blk -- NOTE: хуже не стало
-- FIXME: fugure out if it's really required
pure () -- we don't need to recurse, cause walkMerkle is recursing for us
else do else do
addDownload blk addDownload blk