From a47a77e4be334b6435d7924cff81701f78495ca8 Mon Sep 17 00:00:00 2001 From: Justin Tieri <37750742+jtieri@users.noreply.github.com> Date: Wed, 21 Aug 2024 14:23:25 -0500 Subject: [PATCH] chore: fix broken imports after gofumpt --- signer/single_signer_validator_test.go | 1 + signer/threshold_validator_test.go | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/signer/single_signer_validator_test.go b/signer/single_signer_validator_test.go index 7139a50c..2db40e9c 100644 --- a/signer/single_signer_validator_test.go +++ b/signer/single_signer_validator_test.go @@ -13,6 +13,7 @@ import ( cometrand "github.com/cometbft/cometbft/libs/rand" cometprivval "github.com/cometbft/cometbft/privval" cometproto "github.com/cometbft/cometbft/proto/tendermint/types" + "github.com/stretchr/testify/require" ) func TestSingleSignerValidator(t *testing.T) { diff --git a/signer/threshold_validator_test.go b/signer/threshold_validator_test.go index 6ff2e56e..c70d0ff4 100644 --- a/signer/threshold_validator_test.go +++ b/signer/threshold_validator_test.go @@ -20,6 +20,11 @@ import ( cometrand "github.com/cometbft/cometbft/libs/rand" cometproto "github.com/cometbft/cometbft/proto/tendermint/types" comet "github.com/cometbft/cometbft/types" + "github.com/ethereum/go-ethereum/crypto/ecies" + "github.com/ethereum/go-ethereum/crypto/secp256k1" + "github.com/stretchr/testify/require" + tsed25519 "gitlab.com/unit410/threshold-ed25519/pkg" + "golang.org/x/sync/errgroup" ) func TestThresholdValidator2of2(t *testing.T) {