BRG4-11: return 0 for PoLTx gas tip cap

This commit is contained in:
Cal Bera 2025-08-15 09:47:58 -07:00
parent ac06e7095c
commit 7f6ad26038

View file

@ -91,7 +91,7 @@ func (*PoLTx) accessList() AccessList { return nil }
func (tx *PoLTx) data() []byte { return tx.Data }
func (tx *PoLTx) gas() uint64 { return tx.GasLimit }
func (tx *PoLTx) gasPrice() *big.Int { return tx.GasPrice }
func (tx *PoLTx) gasTipCap() *big.Int { return tx.GasPrice }
func (tx *PoLTx) gasTipCap() *big.Int { return common.Big0 }
func (tx *PoLTx) gasFeeCap() *big.Int { return tx.GasPrice }
func (*PoLTx) value() *big.Int { return common.Big0 }
func (tx *PoLTx) nonce() uint64 { return tx.Nonce }