Skip to content

Commit e65b6fd

Browse files
committed
fix: assert base fee failure
1 parent 5c2691d commit e65b6fd

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

lib/src/utils/shasta.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,9 @@ pub fn generate_transactions_for_shasta_blocks(
130130
guest_batch_input.taiko.l2_grandparent_header.as_ref(),
131131
) {
132132
warn!("shasta block base fee is invalid, need double check");
133-
make_default_manifest(
134-
guest_batch_input,
135-
last_parent_block_timestamp,
136-
last_parent_block_gas_limit,
137-
last_anchor_block_number,
138-
)
139-
} else {
140-
manifest
133+
assert!(false, "shasta block base fee is invalid");
141134
}
135+
manifest
142136
}
143137
_ => {
144138
let manifest = make_default_manifest(

0 commit comments

Comments
 (0)