This commit is contained in:
Austin 2024-03-14 10:58:41 -04:00 committed by GitHub
parent 6ea9f81044
commit ded146796e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -159,6 +159,10 @@ new_records AS (
) :: bigint
) + FLOOR(
r.l1_gas_price * r.l1_gas_used * r.l1_fee_scalar
) + IFF(
r.l1_fee_scalar = 0,
r.l1_fee,
0
),
18
) AS tx_fee_precise,
@ -237,6 +241,10 @@ missing_data AS (
) :: bigint
) + FLOOR(
r.l1_gas_price * r.l1_gas_used * r.l1_fee_scalar
) + IFF(
r.l1_fee_scalar = 0,
r.l1_fee,
0
),
18
) AS tx_fee_precise_heal,