github.com/Gessiux/neatchain@v1.3.1/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 }