Alexey Shekhirin
Alexey Shekhirin
https://github.com/ethereum/go-ethereum/pull/25430 has been merged 👀
Hi! If this one isn't assigned to anyone yet, I'd be happy to help with implementing it.
Hi @medikoo! Could you please review the PR when you have a time?
Hey @pgrzesik, just rebased! Seems like I don't have access to requesting a review 🤷♂️
@rakita yep, it seems faster than seahash according to that benchmark which also has several even better candidates https://github.com/rurban/smhasher both are non-cryptographic and should be ok for some of the...
TIL that `hashbrown` already uses `ahash` by default, and `revm` uses `hashbrown` for all performance-critical things 🙂 ```rust /// Default hasher for `HashMap`. #[cfg(feature = "ahash")] pub type DefaultHashBuilder =...
Same for macOS ```console ➜ revmjs git:(main) ✗ cargo build --target wasm32-unknown-unknown Compiling cc v1.0.71 Compiling secp256k1-sys v0.4.1 The following warnings were emitted during compilation: warning: error: unable to create...
@MariusVanDerWijden agree, fixed!
# Data Availability assumptions - In case of a reorg, we need to have account and storage changesets available up to the reorged block to unwind the execution, hashing and...
This is a good point. > So it would have to be a sliding window, i.e. always save e.g. the last 256 blocks of changesets in execution, and remove any...