Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
fix: update gas limit to 30M
Browse files Browse the repository at this point in the history
fixes #1833
  • Loading branch information
davidmurdoch committed Jan 3, 2022
1 parent ba61f67 commit 6445406
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chains/ethereum/options/src/miner-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export type MinerConfig = {
/**
* Sets the block gas limit in WEI.
*
* @defaultValue 12_000_000
* @defaultValue 30_000_000
*/
blockGasLimit: {
type: Quantity;
Expand Down Expand Up @@ -215,7 +215,7 @@ export const MinerOptions: Definitions<MinerConfig> = {
blockGasLimit: {
normalize: Quantity.from,
cliDescription: "Sets the block gas limit in WEI.",
default: () => Quantity.from(12_000_000),
default: () => Quantity.from(30_000_000),
legacyName: "gasLimit",
cliAliases: ["l", "gasLimit"],
cliType: "string",
Expand Down

0 comments on commit 6445406

Please sign in to comment.