Skip to content

Commit

Permalink
hotfix: Update/temp maximum gas price limit to 50 GWei (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
gr8h committed Aug 20, 2024
1 parent f5e9d6b commit 9e2a307
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 9e2a307

Please sign in to comment.