From d61b435cc3130e2a710c5506dac4a2247c94b30c Mon Sep 17 00:00:00 2001 From: Bui Quang Minh Date: Mon, 21 Oct 2024 14:23:48 +0700 Subject: [PATCH] Makefile: temporarily enable race detector in unit test --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0609cc6637..a6386d9aea 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ ios: @echo "Import \"$(GOBIN)/Geth.framework\" to use the library." test: all - $(GORUN) build/ci.go test --coverage + $(GORUN) build/ci.go test --coverage --race lint: ## Run linters. $(GORUN) build/ci.go lint