From b50addd38b5429d7d2d1fcce25a8de4f43d3edfc Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Tue, 20 Feb 2024 21:35:39 +0100 Subject: [PATCH] goimport --- core/types/tx_delegate.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/core/types/tx_delegate.go b/core/types/tx_delegate.go index c900d10a83..be59b7a245 100644 --- a/core/types/tx_delegate.go +++ b/core/types/tx_delegate.go @@ -71,17 +71,17 @@ func (tx *DelegateTx) copy() TxData { } // accessors for innerTx. -func (tx *DelegateTx) txType() byte { return DelegateTxType } -func (tx *DelegateTx) chainID() *big.Int { return tx.ChainID } -func (tx *DelegateTx) accessList() AccessList { return tx.AccessList } -func (tx *DelegateTx) data() []byte { return tx.Data } -func (tx *DelegateTx) gas() uint64 { return tx.Gas } -func (tx *DelegateTx) gasPrice() *big.Int { return tx.GasPrice } -func (tx *DelegateTx) gasTipCap() *big.Int { return tx.GasPrice } -func (tx *DelegateTx) gasFeeCap() *big.Int { return tx.GasPrice } -func (tx *DelegateTx) value() *big.Int { return big.NewInt(0) } -func (tx *DelegateTx) nonce() uint64 { return tx.Nonce } -func (tx *DelegateTx) to() *common.Address { return tx.To } +func (tx *DelegateTx) txType() byte { return DelegateTxType } +func (tx *DelegateTx) chainID() *big.Int { return tx.ChainID } +func (tx *DelegateTx) accessList() AccessList { return tx.AccessList } +func (tx *DelegateTx) data() []byte { return tx.Data } +func (tx *DelegateTx) gas() uint64 { return tx.Gas } +func (tx *DelegateTx) gasPrice() *big.Int { return tx.GasPrice } +func (tx *DelegateTx) gasTipCap() *big.Int { return tx.GasPrice } +func (tx *DelegateTx) gasFeeCap() *big.Int { return tx.GasPrice } +func (tx *DelegateTx) value() *big.Int { return big.NewInt(0) } +func (tx *DelegateTx) nonce() uint64 { return tx.Nonce } +func (tx *DelegateTx) to() *common.Address { return tx.To } func (tx *DelegateTx) effectiveGasPrice(dst *big.Int, baseFee *big.Int) *big.Int { return dst.Set(tx.GasPrice)