remove semgrep ignore

This commit is contained in:
0xmuralik 2023-01-06 15:40:33 +05:30
parent aafde2478a
commit 60afa0222a

View File

@ -213,12 +213,10 @@ func NewCLILogger(cmd *cobra.Command) CLILogger {
}
// New creates a new Network for integration tests or in-process testnets run via the CLI
// nosemgrep: missing-unlock-before-return
func New(l Logger, baseDir string, cfg Config) (*Network, error) {
// only one caller/test can create and use a network at a time
l.Log("acquiring test network lock")
lock.Lock()
// defer lock.Unlock()
if !ethermint.IsValidChainID(cfg.ChainID) {
return nil, fmt.Errorf("invalid chain-id: %s", cfg.ChainID)