diff --git a/cmd/horcrux/cmd/start.go b/cmd/horcrux/cmd/start.go index 393e1388..8f207b1e 100644 --- a/cmd/horcrux/cmd/start.go +++ b/cmd/horcrux/cmd/start.go @@ -2,9 +2,10 @@ package cmd import ( "fmt" - "github.com/strangelove-ventures/horcrux/pkg/connector" "os" + "github.com/strangelove-ventures/horcrux/pkg/connector" + cometlog "github.com/cometbft/cometbft/libs/log" "github.com/cometbft/cometbft/libs/service" "github.com/spf13/cobra" diff --git a/signer/single_signer_validator.go b/signer/single_signer_validator.go index cb51ad6e..9d110d0b 100644 --- a/signer/single_signer_validator.go +++ b/signer/single_signer_validator.go @@ -3,11 +3,12 @@ package signer import ( "context" "fmt" - "github.com/strangelove-ventures/horcrux/pkg/connector" "os" "sync" "time" + "github.com/strangelove-ventures/horcrux/pkg/connector" + "github.com/strangelove-ventures/horcrux/pkg/types" )