fix: defaultGenTxGas to 10 times (#12314)

This commit is contained in:
HaeSung 2022-06-21 22:48:54 +09:00 committed by GitHub
parent aeab66a32d
commit bf7348e631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ import (
// SimAppChainID hardcoded chainID for simulation
const (
DefaultGenTxGas = 1000000
DefaultGenTxGas = 10000000
SimAppChainID = "simulation-app"
)