Skip to content

Commit

Permalink
reset bad blocks manager on resync
Browse files Browse the repository at this point in the history
Signed-off-by: garyschulte <[email protected]>
  • Loading branch information
garyschulte committed Jan 10, 2023
1 parent 9dd82ae commit 0346dad
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,39 @@
/*
* Copyright Hyperledger Besu Contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.besu.ethereum.api.jsonrpc.internal.methods;

import org.hyperledger.besu.ethereum.api.jsonrpc.RpcMethod;
import org.hyperledger.besu.ethereum.api.jsonrpc.internal.JsonRpcRequestContext;
import org.hyperledger.besu.ethereum.api.jsonrpc.internal.response.JsonRpcResponse;
import org.hyperledger.besu.ethereum.api.jsonrpc.internal.response.JsonRpcSuccessResponse;
import org.hyperledger.besu.ethereum.chain.Blockchain;
import org.hyperledger.besu.ethereum.core.Synchronizer;
import org.hyperledger.besu.ethereum.mainnet.ProtocolSchedule;

public class DebugResyncWorldstate implements JsonRpcMethod {
private final Synchronizer synchronizer;
private final ProtocolSchedule protocolSchedule;
private final Blockchain blockchain;

public DebugResyncWorldstate(final Synchronizer synchronizer) {
public DebugResyncWorldstate(
final ProtocolSchedule protocolSchedule,
final Blockchain blockchain,
final Synchronizer synchronizer) {
this.synchronizer = synchronizer;
this.protocolSchedule = protocolSchedule;
this.blockchain = blockchain;
}

@Override
Expand All @@ -20,6 +43,10 @@ public String getName() {

@Override
public JsonRpcResponse response(final JsonRpcRequestContext request) {
protocolSchedule
.getByBlockNumber(blockchain.getChainHeadBlockNumber())
.getBadBlocksManager()
.reset();
return new JsonRpcSuccessResponse(
request.getRequest().getId(), synchronizer.resyncWorldState());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ protected Map<String, JsonRpcMethod> create() {
new DebugAccountRange(blockchainQueries),
new DebugStorageRangeAt(blockchainQueries, blockReplay),
new DebugMetrics(metricsSystem),
new DebugResyncWorldstate(synchronizer),
new DebugResyncWorldstate(protocolSchedule, protocolContext.getBlockchain(), synchronizer),
new DebugTraceBlock(
() -> new BlockTracer(blockReplay),
ScheduleBasedBlockHeaderFunctions.create(protocolSchedule),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ public void addBadBlock(final Block badBlock, final Optional<Throwable> cause) {
}
}

public void reset() {
this.badBlocks.invalidateAll();
this.badHeaders.invalidateAll();
this.latestValidHashes.invalidateAll();
}

/**
* Return all invalid blocks
*
Expand Down

0 comments on commit 0346dad

Please sign in to comment.