Skip to content

Commit 83511ca

Browse files
authored
Merge pull request #56 from enviodev/fix-order-of-schema-reflect-hypersync
Fix the order of the schema to reflect HyperSync.
2 parents 6d200b0 + 09a332d commit 83511ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hypersync-schema/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ pub fn transaction() -> SchemaRef {
9595
Field::new("gas_used_for_l1", quantity_dt(), true),
9696
Field::new("max_fee_per_blob_gas", quantity_dt(), true),
9797
Field::new("blob_versioned_hashes", DataType::BinaryView, true),
98-
Field::new("blob_gas_price", quantity_dt(), true),
9998
Field::new("deposit_nonce", quantity_dt(), true),
99+
Field::new("blob_gas_price", quantity_dt(), true),
100100
Field::new("deposit_receipt_version", quantity_dt(), true),
101101
Field::new("blob_gas_used", quantity_dt(), true),
102102
Field::new("l1_base_fee_scalar", quantity_dt(), true),

0 commit comments

Comments
 (0)