Skip to content

Commit

Permalink
increase simulation contract size
Browse files Browse the repository at this point in the history
  • Loading branch information
Yun committed May 26, 2020
1 parent c393f4f commit ddddfb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/wasm/simulation/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const (

// GenMaxContractSize randomized MaxContractSize
func GenMaxContractSize(r *rand.Rand) uint64 {
return uint64(1024 + r.Intn(499*1024))
return uint64(300*1024 + r.Intn(200*1024))
}

// GenMaxContractGas randomized MaxContractGas
Expand Down

0 comments on commit ddddfb6

Please sign in to comment.