Skip to content

Commit

Permalink
fix: integration
Browse files Browse the repository at this point in the history
Signed-off-by: gfanton <8671905+gfanton@users.noreply.github.com>
  • Loading branch information
gfanton committed Sep 25, 2023
1 parent f5c62d4 commit 9c7c0a5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gno.land/pkg/integration/testing_integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//
// This file is a rapid prototype to meet immediate project needs and is not intended for long-term
// use in its current form. It requires review, possible refactoring, and thorough testing.
// Use at your own risk. The author(s) accept no liability for any issues arising from its use.
// Use at your own risk.
// ------------------------------------------------------------------------------------------------

package integration
Expand Down Expand Up @@ -342,10 +342,10 @@ func setupTestingGenesis(gnoDataDir string, cfg *config.Config, icfg *Integratio
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
},
},
Validators: []bft.GenesisValidator{
Expand Down

0 comments on commit 9c7c0a5

Please sign in to comment.