github.com/intfoundation/intchain@v0.0.0-20220727031208-4316ad31ca73/params/config1.go (about) 1 package params 2 3 var GenCfg = GeneralConfig{PerfTest: false} 4 5 //configuations in this structure is read-only, it gives a way to put/get general settings 6 type GeneralConfig struct { 7 8 // Whether doing performance test, will remove some limitations and cause system more frigile 9 PerfTest bool `json:"perfTest,omitempty"` 10 }