You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
revm_primitives::InvalidTransaction::GasMaxFeeGreaterThanPriorityFee was renamed to PriorityFeeGreaterThanMaxFeeupstream. This breaks reth-rpc which pattern matches this variant. The build breakage is currently masked by Cargo.lock, but that doesn't help people trying to build on top of Reth.
Steps to reproduce
Checkout Reth
rm Cargo.lock
cargo build
Compiling reth-rpc v0.1.0-alpha.8 (/home/ptd/Projects/reth/crates/rpc/rpc)
error[E0599]: no variant or associated item named `GasMaxFeeGreaterThanPriorityFee` found for enum `revm_primitives::InvalidTransaction` in the current scope
--> crates/rpc/rpc/src/eth/error.rs:373:33
|
373 | InvalidTransaction::GasMaxFeeGreaterThanPriorityFee => {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ variant or associated item not found in `InvalidTransaction`
For more information about this error, try `rustc --explain E0599`.
error: could not compile `reth-rpc` (lib) due to previous error
Describe the bug
revm_primitives::InvalidTransaction::GasMaxFeeGreaterThanPriorityFee
was renamed toPriorityFeeGreaterThanMaxFee
upstream. This breaksreth-rpc
which pattern matches this variant. The build breakage is currently masked byCargo.lock
, but that doesn't help people trying to build on top of Reth.Steps to reproduce
rm Cargo.lock
cargo build
Node logs
No response
Platform(s)
Linux (x86)
What version/commit are you on?
f00df57
What database version are you on?
No response
If you've built Reth from source, provide the full command you used
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: