-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(ethereum): replace reth-primitives with alloy #11155
Conversation
Signed-off-by: Abhishekkochar <abhishekkochar2@gmail.com>
unfortunate timing, sorry -.- two smol conflcits |
crates/ethereum/evm/src/lib.rs
Outdated
use reth_chainspec::{ChainSpec, Head}; | ||
use reth_evm::{ConfigureEvm, ConfigureEvmEnv, NextBlockEnvAttributes}; | ||
use reth_primitives::{transaction::FillTxEnv, Address, Header, TransactionSigned, U256}; | ||
use reth_primitives::{transaction::FillTxEnv, Header, TransactionSigned}; | ||
use revm_primitives::{ | ||
AnalysisKind, BlobExcessGasAndPrice, BlockEnv, Bytes, CfgEnv, CfgEnvWithHandlerCfg, Env, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mattsse there are few instance where Bytes
and such are being imported from revm_primitives
. These can be imported directly from alloy instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sg!
Signed-off-by: Abhishekkochar <abhishekkochar2@gmail.com>
Signed-off-by: Abhishekkochar <abhishekkochar2@gmail.com>
Related to #10749