Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
blockchaintest: Only check state root for 5 first/last blocks
This is blockchain tests execution optimization: only check state root hash of first 5 blocks (to detect early problems) and last 5 blocks (to do the final check of the chain of blocks). The current implementation of the MPT hash of the state builds the trie from scratch (no updates to the trie of the previous block). For the tests will a long chain of blocks the performance degrades significantly with 99% time spent in the keccak hash function. This improves testing of EIP-2935 implemented in #953.
- Loading branch information