Skip to content

Commit f43ab2b

Browse files
authored
fix(raiko): use original code bytes in batch preflight (#525)
1 parent d6fd5b6 commit f43ab2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/preflight/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ pub async fn batch_preflight<BDP: BlockDataProvider>(
356356
.info
357357
.code
358358
.clone()
359-
.map(|code| Bytes(code.bytecode().0.clone()))
359+
.map(|code| Bytes(code.original_bytes().0.clone()))
360360
}))
361361
.into_iter()
362362
.collect::<Vec<Bytes>>();

0 commit comments

Comments
 (0)