Skip to content

Commit

Permalink
fix: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Jan 26, 2025
1 parent b7a6516 commit 18dde5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/types/op_deposit_tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ func (tx *DepositTx) gasPrice() *big.Int { return new(big.Int) }
func (tx *DepositTx) value() *big.Int { return tx.Value }
func (tx *DepositTx) nonce() uint64 { return 0 }
func (tx *DepositTx) to() *common.Address { return tx.To }
func (tx *DepositTx) isSystemTx() bool { return tx.IsSystemTransaction }
func (tx *DepositTx) isSystemTx() bool { return tx.IsSystemTransaction } // nolint:unused
func (tx *DepositTx) isAnchor() bool { return false }
func (tx *DepositTx) markAsAnchor() error { return ErrInvalidTxType }

func (tx *DepositTx) effectiveGasPrice(dst *big.Int, baseFee *big.Int) *big.Int {
return dst.Set(new(big.Int))
}

func (tx *DepositTx) effectiveNonce() *uint64 { return nil }
func (tx *DepositTx) effectiveNonce() *uint64 { return nil } // nolint:unused

func (tx *DepositTx) rawSignatureValues() (v, r, s *big.Int) {
return common.Big0, common.Big0, common.Big0
Expand Down

0 comments on commit 18dde5d

Please sign in to comment.