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 4d2f693 commit cdbab67
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(10*1024 + r.Intn(490*1024))
return uint64(100*1024 + r.Intn(400*1024))
}

// GenMaxContractGas randomized MaxContractGas
Expand Down

0 comments on commit cdbab67

Please sign in to comment.