-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
refactor: clean up posthandler logic and tests #39
Conversation
feeCoins = feeTx.GetFee() | ||
|
||
// Ensure that the provided fees meet the minimum | ||
minGasPrices := feesDec | ||
minGasPrices := minFeesDecCoins |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does there need to be a check on whether the provided gas limit > consumed gas limit or do you think it's fine for the gas meter to handle that? On it's own you can technically have a greater gas consumed than gas limit rn.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The gas meter will automatically do that in the background if the tx ever exceeds the gas limit
No description provided.