mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-08 23:08:19 -05:00
fix(primitives-traits): delegate is_create for Extended::Other to fix create-detection (#18699)
This commit is contained in:
@@ -95,7 +95,7 @@ where
|
||||
fn is_create(&self) -> bool {
|
||||
match self {
|
||||
Self::BuiltIn(tx) => tx.is_create(),
|
||||
Self::Other(_tx) => false,
|
||||
Self::Other(tx) => tx.is_create(),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user