Skip to content

Commit

Permalink
update gas pricing for pairing check in eip-2537
Browse files Browse the repository at this point in the history
  • Loading branch information
gurukamath committed Dec 18, 2024
1 parent 48215dc commit c24586f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def bls12_pairing(evm: Evm) -> None:

# GAS
k = len(data) // 384
gas_cost = Uint(43000 * k + 65000)
gas_cost = Uint(32600 * k + 37700)
charge_gas(evm, gas_cost)

# OPERATION
Expand Down

0 comments on commit c24586f

Please sign in to comment.