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) {