Skip to content

Commit

Permalink
feat(federate): change access modifier for federation watcher listerner
Browse files Browse the repository at this point in the history
  • Loading branch information
apancorb committed Nov 15, 2024
1 parent 4cc0c07 commit 9a1e59e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/co/rsk/federate/FederationWatcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void addListener(Listener listener) {
listeners.add(listener);
}

public class FederationWatcherRskListener extends EthereumListenerAdapter {
class FederationWatcherRskListener extends EthereumListenerAdapter {
@Override
public void onBestBlock(org.ethereum.core.Block block, List<TransactionReceipt> receipts) {
// Updating state only when the best block changes still "works",
Expand Down

0 comments on commit 9a1e59e

Please sign in to comment.