From 720fc43928c6d2a0a46027c5475902e1d8e6965b Mon Sep 17 00:00:00 2001 From: Sujong Lee Date: Thu, 27 Oct 2022 13:59:59 +0900 Subject: [PATCH] fix: restore build norace flag (#761) * fix: add build norace * docs: add changelog --- CHANGELOG.md | 1 + x/foundation/client/testutil/cli_test.go | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b295eec299..8942a689c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -125,6 +125,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (client) [\#737](https://github.com/line/lbm-sdk/pull/737) check multisig key list to prevent unexpected key deletion * (simapp) [\#752](https://github.com/line/lbm-sdk/pull/752) add x/distribution's module account into blockedAddr * (x/auth) [\#754](https://github.com/line/lbm-sdk/pull/754) Fix wrong sequences in `sign-batch` +* (x/foundation) [\#761](https://github.com/line/lbm-sdk/pull/761) restore build norace flag * (server) [\#763](https://github.com/line/lbm-sdk/pull/763) start telemetry independently from the API server ### Breaking Changes diff --git a/x/foundation/client/testutil/cli_test.go b/x/foundation/client/testutil/cli_test.go index 5cc6f45f5f..f979202abe 100644 --- a/x/foundation/client/testutil/cli_test.go +++ b/x/foundation/client/testutil/cli_test.go @@ -1,3 +1,6 @@ +//go:build norace +// +build norace + package testutil import (