Skip to content

Commit

Permalink
Fix: increase max block gas limit
Browse files Browse the repository at this point in the history
Increase the block gas limit accordingly as we update the gas configuration.
  • Loading branch information
piux2 authored Dec 19, 2024
1 parent e506a8d commit 2a9e279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gno.land/cmd/gnoland/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ func generateGenesisFile(genesisFile string, pk crypto.PubKey, c *startCfg) erro
// TODO: update limits.
MaxTxBytes: 1_000_000, // 1MB,
MaxDataBytes: 2_000_000, // 2MB,
MaxGas: 100_000_000, // 100M gas
MaxGas: 3_000_000_000, // 3B gas
TimeIotaMS: 100, // 100ms
},
}
Expand Down

0 comments on commit 2a9e279

Please sign in to comment.