From f48eb27f00598feed860cafc401b78b617504eec Mon Sep 17 00:00:00 2001 From: CalDescent Date: Tue, 14 Jun 2022 22:42:44 +0100 Subject: [PATCH] Revert "Temporarily limit block minter as first stage of multipart minting fix. This will be reverted almost immediately after release." This reverts commit 0eebfe4a8c07cf2ed984ee03ed7c18d7b900064b. --- src/main/java/org/qortal/block/Block.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/org/qortal/block/Block.java b/src/main/java/org/qortal/block/Block.java index 4bd71ce3..5fe005d6 100644 --- a/src/main/java/org/qortal/block/Block.java +++ b/src/main/java/org/qortal/block/Block.java @@ -378,10 +378,6 @@ public class Block { // Online account (reward-share) with current timestamp but reward-share cancelled continue; - if (accountIndex >= 7850) - // Temporary limitation as first stage of multipart minting fix - continue; - indexedOnlineAccounts.put(accountIndex, onlineAccountData); } List accountIndexes = new ArrayList<>(indexedOnlineAccounts.keySet());