chore: bump revm to latest with placeholders for EOF (#7765)

This commit is contained in:
DaniPopes
2024-05-12 16:12:24 +03:00
committed by GitHub
parent 3efab64218
commit c2a05f07d3
11 changed files with 143 additions and 99 deletions

View File

@ -158,7 +158,7 @@ impl Database {
for (hash, bytecode) in changeset.contracts {
tx.execute(
"INSERT INTO bytecode (hash, data) VALUES (?, ?) ON CONFLICT(hash) DO NOTHING",
(hash.to_string(), bytecode.bytes().to_string()),
(hash.to_string(), bytecode.bytecode().to_string()),
)?;
}