Skip to content

Commit

Permalink
clean code
Browse files Browse the repository at this point in the history
Signed-off-by: Karim Taam <[email protected]>
  • Loading branch information
matkt committed Jun 11, 2024
1 parent 69de8e0 commit 4d0aee6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,6 @@ public Map<Bytes32, Bytes32> generateManyTrieKeyHashes(
hasher.manyTrieKeyHashes(address, new ArrayList<>(offsetsToGenerate));
trieKeyHashes.putAll(cachedTrieKeys);

trieKeyHashes.forEach(
(bytes32, bytes322) -> {
System.out.println(bytes32 + " " + bytes322);
});
return trieKeyHashes;

} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import org.hyperledger.besu.ethereum.trie.diffbased.common.worldview.accumulator.DiffBasedWorldStateUpdateAccumulator;
import org.hyperledger.besu.ethereum.trie.diffbased.common.worldview.accumulator.preload.Consumer;
import org.hyperledger.besu.ethereum.trie.diffbased.verkle.VerkleAccount;
import org.hyperledger.besu.evm.account.MutableAccount;
import org.hyperledger.besu.evm.internal.EvmConfiguration;
import org.hyperledger.besu.evm.worldstate.UpdateTrackingAccount;

Expand Down Expand Up @@ -113,16 +112,6 @@ protected Optional<UInt256> getStorageValueByStorageSlotKey(
return worldState.getStorageValueByStorageSlotKey(address, storageSlotKey);
}

@Override
public MutableAccount getAccount(final Address address) {
return super.getAccount(address);
}

@Override
public Optional<Bytes> getCode(final Address address, final Hash codeHash) {
return super.getCode(address, codeHash);
}

@Override
protected boolean shouldIgnoreIdenticalValuesDuringAccountRollingUpdate() {
return false;
Expand Down

0 comments on commit 4d0aee6

Please sign in to comment.