Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
KuphJr committed May 21, 2024
1 parent 79c7e49 commit a60f54c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ library ChainSpecificUtil {
uint256 l1BaseFeeScalar = L1BLOCK.baseFeeScalar();
uint256 l1BlobBaseFeeWei = L1BLOCK.blobBaseFee();
uint256 l1BlobBaseFeeScalar = L1BLOCK.blobBaseFeeScalar();
uint256 weightedGasPrice = (l1BaseFeeScalar * l1BaseFeeWei + l1BlobBaseFeeScalar * l1BlobBaseFeeWei) / 10**6;
uint256 weightedGasPrice = (l1BaseFeeScalar * l1BaseFeeWei + l1BlobBaseFeeScalar * l1BlobBaseFeeWei) / 10 ** 6;
return weightedGasPrice * (dataSizeBytes + OP_L1_FEE_DATA_PADDING_SIZE);
}
return 0;
Expand Down

0 comments on commit a60f54c

Please sign in to comment.