Skip to content

Commit

Permalink
Update maximum gas price limit to 50 GWei in EthGasPriceConstants.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
gr8h committed May 1, 2024
1 parent a1fa15f commit 8145c5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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();
}
}

0 comments on commit 8145c5d

Please sign in to comment.