You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/tx_pool.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -81,15 +81,15 @@ var (
81
81
// and the input transaction does not conform to with EIP1559
82
82
ErrTxNotEIP1559=fmt.Errorf("after block %d EIP1559 is finalized and transactions must contain a GasPremium and FeeCap and not contain a GasPrice", params.EIP1559ForkFinalizedBlockNumber)
83
83
84
-
// ErrTxIsEIP1559 is returned if we have not reached the EIP1559 initialization block height
84
+
// ErrTxIsEIP1559 is returned if we have not reached the EIP1559 activation block height
85
85
// and the input transaction is not of the legacy type
86
86
ErrTxIsEIP1559=fmt.Errorf("before block %d EIP1559 is not activated and transactions must contain a GasPrice and not contain a GasPremium or FeeCap", params.EIP1559ForkBlockNumber)
87
87
88
88
// ErrTxSetsLegacyAndEIP1559Fields is returned if a transaction attempts to set
89
89
// both legacy (GasPrice) and EIP1559 (GasPremium and FeeCap) fields
90
90
ErrTxSetsLegacyAndEIP1559Fields=errors.New("transaction sets both legacy and EIP1559 fields")
91
91
92
-
// ErrNoBaseFee is returned if we are past the EIP1559 initialization block but
92
+
// ErrNoBaseFee is returned if we are past the EIP1559 activation block but
93
93
// the current header does not provide a BaseFee
94
94
ErrNoBaseFee=errors.New("current header does not provide the BaseFee needed to process EIP1559 transactions")
0 commit comments