chore: fix ci (#10903)

This commit is contained in:
Arsenii Kulikov
2024-09-14 10:12:39 +04:00
committed by GitHub
parent bb1894298b
commit 8852e85d14
3 changed files with 8 additions and 6 deletions

8
Cargo.lock generated
View File

@ -4422,7 +4422,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"windows-targets 0.48.5", "windows-targets 0.52.6",
] ]
[[package]] [[package]]
@ -8963,9 +8963,9 @@ dependencies = [
[[package]] [[package]]
name = "revm-inspectors" name = "revm-inspectors"
version = "0.7.0" version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d37cf496100c6ff1fb7de04a0e05318b7f36b36aec54054bdeeb3346fb2abeb" checksum = "02b2198350ddee1744cc99812fb39175daf6960af26c1dcfb26ec853c1937d9e"
dependencies = [ dependencies = [
"alloy-primitives", "alloy-primitives",
"alloy-rpc-types-eth", "alloy-rpc-types-eth",
@ -11075,7 +11075,7 @@ version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
dependencies = [ dependencies = [
"windows-sys 0.48.0", "windows-sys 0.59.0",
] ]
[[package]] [[package]]

View File

@ -410,7 +410,7 @@ revm = { version = "14.0.0", features = [
"secp256k1", "secp256k1",
"blst", "blst",
], default-features = false } ], default-features = false }
revm-inspectors = "0.7" revm-inspectors = "0.7.1"
revm-primitives = { version = "9.0.0", features = [ revm-primitives = { version = "9.0.0", features = [
"std", "std",
], default-features = false } ], default-features = false }

View File

@ -117,7 +117,9 @@ where
value: op.value, value: op.value,
r#type: match op.kind { r#type: match op.kind {
TransferKind::Call => OperationType::OpTransfer, TransferKind::Call => OperationType::OpTransfer,
TransferKind::Create => OperationType::OpCreate, TransferKind::Create | TransferKind::EofCreate => {
OperationType::OpCreate
}
TransferKind::Create2 => OperationType::OpCreate2, TransferKind::Create2 => OperationType::OpCreate2,
TransferKind::SelfDestruct => OperationType::OpSelfDestruct, TransferKind::SelfDestruct => OperationType::OpSelfDestruct,
}, },