We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b061e4 commit c3c5595Copy full SHA for c3c5595
rollup/fees/rollup_fee_test.go
@@ -42,7 +42,8 @@ func TestL1DataFeeFeynman(t *testing.T) {
42
43
// feePerByte = execScalar * l1BaseFee + blobScalar * l1BlobBaseFee = 10_000_000_000 + 20_000_000_000 = 30_000_000_000
44
// l1DataFee = precision * txSize * feePerByte / precision / precision
45
- // = 1_000_000 * 10 * 30_000_000_000 / 1_000_000 / 1_000_000 = 300_000_000_000_000_000 / 1_000_000 / 1_000_000_000 = 300
+ // = 1_000_000_000 * 10 * 30_000_000_000 / 1_000_000_000 / 1_000_000 = 300_000_000_000_000_000 / 1_000_000_000 / 1_000_000_000 = 300
46
+ //TODO for now compression_ratio = precision, placeholder
47
48
expected := new(big.Int).SetInt64(300)
49
0 commit comments