Skip to content
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

Update MaxGasPrice limit to 50 GWei #13

Merged
merged 1 commit into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION.FUSE.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.5
4.0.6
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static class EthGasPriceConstants
public const int DefaultBlocksLimitMaxPriorityFeePerGas = 100; //Limit for how many blocks we check txs in to add to sortedTxList in case of calculating max priority fee per gas
public const int TxLimitFromABlock = 3; //Maximum number of tx we can add to sortedTxList from one block
public const int DefaultIgnoreUnder = 2; //Effective Gas Prices under this are ignored
public static readonly UInt256 MaxGasPrice = 500.GWei(); //Maximum gas price we can return
public static readonly UInt256 MaxGasPrice = 50.GWei(); //Maximum gas price we can return
public static readonly UInt256 FallbackMaxPriorityFeePerGas = 200.GWei();
leonprou marked this conversation as resolved.
Show resolved Hide resolved
}
}
Loading