mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 05:36:46 +00:00
BRG4-11: return 0 for PoLTx gas tip cap
This commit is contained in:
parent
ac06e7095c
commit
7f6ad26038
1 changed files with 1 additions and 1 deletions
|
|
@ -91,7 +91,7 @@ func (*PoLTx) accessList() AccessList { return nil }
|
||||||
func (tx *PoLTx) data() []byte { return tx.Data }
|
func (tx *PoLTx) data() []byte { return tx.Data }
|
||||||
func (tx *PoLTx) gas() uint64 { return tx.GasLimit }
|
func (tx *PoLTx) gas() uint64 { return tx.GasLimit }
|
||||||
func (tx *PoLTx) gasPrice() *big.Int { return tx.GasPrice }
|
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 (tx *PoLTx) gasFeeCap() *big.Int { return tx.GasPrice }
|
||||||
func (*PoLTx) value() *big.Int { return common.Big0 }
|
func (*PoLTx) value() *big.Int { return common.Big0 }
|
||||||
func (tx *PoLTx) nonce() uint64 { return tx.Nonce }
|
func (tx *PoLTx) nonce() uint64 { return tx.Nonce }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue