We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bor/core/types/tx_dynamic_fee.go
Line 137 in 06f2985
func (tx *DynamicFeeTx) gasPriceU256() *uint256.Int { if tx.gasFeeCapUint256 != nil { // return tx.gasTipCapUint256 return tx.gasFeeCapUint256 } tx.gasFeeCapUint256, _ = uint256.FromBig(tx.GasFeeCap) return tx.gasFeeCapUint256 }
The text was updated successfully, but these errors were encountered:
Hi @brainswa - can you please explain a bit more?
Sorry, something went wrong.
@pratikspatil024 function gasPriceU256 need to return tx.gasFeeCapUint256, instead that it's return gasTipCapUint256 when the value has already cached
Thank you @brainswa for bringing this to light! We have merged the fix and should be included in upcoming releases.
0xsharma
Successfully merging a pull request may close this issue.
bor/core/types/tx_dynamic_fee.go
Line 137 in 06f2985
The text was updated successfully, but these errors were encountered: