Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions eth-types/src/evm_types/opcode_ids.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1240,8 +1240,11 @@ impl FromStr for OpcodeId {
"BASEFEE" => OpcodeId::BASEFEE,
#[cfg(feature = "scroll")]
"BASEFEE" => OpcodeId::INVALID(0x48),
"TLOAD" => OpcodeId::INVALID(0xb3),
"TSTORE" => OpcodeId::INVALID(0xb4),
"BLOBHASH" => OpcodeId::INVALID(0x49)
"BLOBBASEFEE" => OpcodeId::INVALID(0x4a),
"TLOAD" => OpcodeId::INVALID(0x5c),
"TSTORE" => OpcodeId::INVALID(0x5d),
"MCOPY" => OpcodeId::INVALID(0x5e),
_ => {
// Parse an invalid opcode value as reported by geth
static RE: LazyLock<Regex> = LazyLock::new(|| {
Expand Down
4 changes: 2 additions & 2 deletions testool/Config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,10 @@ paths = [
[[skip_paths]]
desc = "too big"
paths = [
# "stTimeConsuming", # full of useless sstore tests
"stTimeConsuming", # full of useless sstore tests
# "stExample",
# "stQuadraticComplexityTest",
# "50000"
"50000"
]

[[skip_paths]]
Expand Down