Skip to content

Commit

Permalink
consensus params * 10
Browse files Browse the repository at this point in the history
  • Loading branch information
thehowl committed Sep 19, 2023
1 parent d74946b commit 2dd9e6c
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 @@ -194,10 +194,10 @@ func makeGenesisDoc(
gen.ConsensusParams = abci.ConsensusParams{
Block: &abci.BlockParams{
// TODO: update limits.
MaxTxBytes: 1000000, // 1MB,
MaxDataBytes: 2000000, // 2MB,
MaxGas: 10000000, // 10M gas
TimeIotaMS: 100, // 100ms
MaxTxBytes: 10_000_000, // 10MB,
MaxDataBytes: 20_000_000, // 20MB,
MaxGas: 100_000_000, // 100M gas
TimeIotaMS: 100, // 100ms
},
}
gen.Validators = []bft.GenesisValidator{
Expand Down

0 comments on commit 2dd9e6c

Please sign in to comment.