Skip to content

Commit

Permalink
types: Use pointers for the fee components
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcorin committed Jun 18, 2024
1 parent 5727a6c commit 245edf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/types/chain_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ const (
// ChainFeeComponents contains the different cost components of executing a transaction.
type ChainFeeComponents struct {
// The cost of executing transaction in the chain's EVM (or the L2 environment).
ExecutionFee big.Int
ExecutionFee *big.Int

// The cost associated with an L2 posting a transaction's data to the L1.
DataAvailabilityFee big.Int
DataAvailabilityFee *big.Int
}

0 comments on commit 245edf2

Please sign in to comment.