From 7f6ad2603850f8a9f00c952f02f4400804a37d73 Mon Sep 17 00:00:00 2001 From: Cal Bera Date: Fri, 15 Aug 2025 09:47:58 -0700 Subject: [PATCH] BRG4-11: return 0 for PoLTx gas tip cap --- core/types/tx_pol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/types/tx_pol.go b/core/types/tx_pol.go index 4a829455af..1faf17acad 100644 --- a/core/types/tx_pol.go +++ b/core/types/tx_pol.go @@ -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 }