Skip to content

Commit

Permalink
complete main merge
Browse files Browse the repository at this point in the history
Signed-off-by: Karim Taam <[email protected]>
  • Loading branch information
matkt committed Nov 27, 2024
2 parents 72d2781 + 674a7ba commit 588a058
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public void process(final WorldUpdater worldUpdater) {
.filter(Account::isEmpty)
.forEach(a -> worldUpdater.deleteAccount(a.getAddress()));
}

@Override
public boolean clearEmptyAccountAllowed(final Address address) {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

import org.apache.tuweni.bytes.Bytes32;

/** Represents the raw values associated with an account in the world state trie. */
/** Represents the raw values associated with an account in the world state verkle trie. */
public class VerkleStateTrieAccountValue extends AbstractStateTrieAccountValue
implements AccountValue {

Expand Down Expand Up @@ -101,4 +101,4 @@ public static VerkleStateTrieAccountValue readFrom(final RLPInput in) {

return new VerkleStateTrieAccountValue(nonce, balance, Hash.wrap(codeHash), codeSize);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,4 @@ public VerkleWorldStateProvider(
new VerkleWorldState(
this, worldStateKeyValueStorage, evmConfiguration, defaultWorldStateConfig));
}


}

0 comments on commit 588a058

Please sign in to comment.