fix: use original bytes (#4150)

This commit is contained in:
Matthias Seitz
2023-08-10 19:45:18 +02:00
committed by GitHub
parent e43187bf7f
commit 2338720b68

View File

@ -440,7 +440,7 @@ where
let code_hash = if db_acc.code_hash != KECCAK_EMPTY { db_acc.code_hash } else { continue };
curr_ref.code = db.code_by_hash(code_hash)?.bytecode.into();
curr_ref.code = db.code_by_hash(code_hash)?.original_bytes().into();
}
Ok(())