From ffa6f234baef05540d674d91a934a1172e5c487a Mon Sep 17 00:00:00 2001 From: garyschulte Date: Fri, 22 Nov 2024 07:54:13 -0800 Subject: [PATCH] shorten rolling increment to 32 Signed-off-by: garyschulte --- .../ethereum/api/jsonrpc/internal/methods/DebugSetHead.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/methods/DebugSetHead.java b/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/methods/DebugSetHead.java index c2210f81748..444fc8cf93f 100644 --- a/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/methods/DebugSetHead.java +++ b/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/methods/DebugSetHead.java @@ -40,7 +40,7 @@ public class DebugSetHead extends AbstractBlockParameterOrBlockHashMethod { private final ProtocolContext protocolContext; private static final Logger LOG = LoggerFactory.getLogger(DebugSetHead.class); - private static final int DEFAULT_MAX_TRIE_LOGS_TO_ROLL_AT_ONCE = 512; + private static final int DEFAULT_MAX_TRIE_LOGS_TO_ROLL_AT_ONCE = 32; private final long maxTrieLogsToRollAtOnce;