Skip to content

Commit

Permalink
fix: increase max block gas limit (#3384)
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 and albttx committed Jan 10, 2025
1 parent 6a55acb commit bcf362f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gno.land/cmd/gnoland/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,10 +374,10 @@ func generateGenesisFile(genesisFile string, pk crypto.PubKey, c *startCfg) erro
gen.ConsensusParams = abci.ConsensusParams{
Block: &abci.BlockParams{
// TODO: update limits.
MaxTxBytes: 1_000_000, // 1MB,
MaxDataBytes: 2_000_000, // 2MB,
MaxGas: 100_000_000, // 100M gas
TimeIotaMS: 100, // 100ms
MaxTxBytes: 1_000_000, // 1MB,
MaxDataBytes: 2_000_000, // 2MB,
MaxGas: 3_000_000_000, // 3B gas
TimeIotaMS: 100, // 100ms
},
}

Expand Down

0 comments on commit bcf362f

Please sign in to comment.