Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr committed Sep 14, 2024
1 parent bb18942 commit c327f1b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ revm = { version = "14.0.0", features = [
"secp256k1",
"blst",
], default-features = false }
revm-inspectors = "0.7"
revm-inspectors = "0.7.1"
revm-primitives = { version = "9.0.0", features = [
"std",
], default-features = false }
Expand Down
4 changes: 3 additions & 1 deletion crates/rpc/rpc/src/otterscan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ where
value: op.value,
r#type: match op.kind {
TransferKind::Call => OperationType::OpTransfer,
TransferKind::Create => OperationType::OpCreate,
TransferKind::Create | TransferKind::EofCreate => {
OperationType::OpCreate
}
TransferKind::Create2 => OperationType::OpCreate2,
TransferKind::SelfDestruct => OperationType::OpSelfDestruct,
},
Expand Down

0 comments on commit c327f1b

Please sign in to comment.