Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions op-acceptance-tests/tests/fjord/check_scripts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func checkFastLZTransactions(t devtest.T, ctx context.Context, sys *presets.Mini
fastLzSize := uint64(types.FlzCompressLen(txUnsigned) + 68)
gethGPOFee, err := dsl.CalculateFjordL1Cost(ctx, l2Client, types.RollupCostData{FastLzSize: fastLzSize}, receipt.BlockHash)
require.NoError(err)
require.Equal(gethGPOFee.Uint64(), gpoFee.Uint64())
Comment thread
serpixel marked this conversation as resolved.
require.Equalf(gethGPOFee.Uint64(), gpoFee.Uint64(), "GPO L1 fee mismatch (expected=%d actual=%d)", gethGPOFee.Uint64(), gpoFee.Uint64())

expectedFee, err := dsl.CalculateFjordL1Cost(ctx, l2Client, signedTx.RollupCostData(), receipt.BlockHash)
require.NoError(err)
Expand All @@ -178,7 +178,7 @@ func checkFastLZTransactions(t devtest.T, ctx context.Context, sys *presets.Mini
flzUpperBound := uint64(txLenGPO + txLenGPO/255 + 16)
upperBoundCost, err := dsl.CalculateFjordL1Cost(ctx, l2Client, types.RollupCostData{FastLzSize: flzUpperBound}, receipt.BlockHash)
require.NoError(err)
require.Equal(upperBoundCost.Uint64(), upperBound.Uint64())
require.Equalf(upperBoundCost.Uint64(), upperBound.Uint64(), "GPO L1 upper bound mismatch (expected=%d actual=%d)", upperBoundCost.Uint64(), upperBound.Uint64())

_, err = contractio.Read(gasPriceOracle.BaseFeeScalar(), ctx)
require.NoError(err)
Expand Down
96 changes: 0 additions & 96 deletions op-acceptance-tests/tests/interop/interop_smoke_test.go

This file was deleted.

Loading