Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
iurii-ssv committed Oct 29, 2024
1 parent 346507f commit e0db3cc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions message/validation/partial_validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ func (mv *messageValidator) validatePartialSignatureMessageSemantics(
// Rule: Partial signature signer must be consistent
if message.Signer != signer {
err := ErrInconsistentSigners
err.got = signer
err.want = message.Signer
err.got = message.Signer
err.want = signer
return err
}

Expand Down
8 changes: 3 additions & 5 deletions protocol/v2/qbft/controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,15 @@ import (
"encoding/json"
"fmt"

qbftstorage "github.com/ssvlabs/ssv/protocol/v2/qbft/storage"
ssvtypes "github.com/ssvlabs/ssv/protocol/v2/types"

"github.com/pkg/errors"
specqbft "github.com/ssvlabs/ssv-spec/qbft"
spectypes "github.com/ssvlabs/ssv-spec/types"
"go.uber.org/zap"

"github.com/ssvlabs/ssv/logging/fields"
"github.com/ssvlabs/ssv/protocol/v2/qbft"
"github.com/ssvlabs/ssv/protocol/v2/qbft/instance"
qbftstorage "github.com/ssvlabs/ssv/protocol/v2/qbft/storage"
ssvtypes "github.com/ssvlabs/ssv/protocol/v2/types"
"go.uber.org/zap"
)

// NewDecidedHandler handles newly saved decided messages.
Expand Down
1 change: 0 additions & 1 deletion protocol/v2/ssv/value_check.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (

"github.com/attestantio/go-eth2-client/spec/phase0"
"github.com/pkg/errors"

specqbft "github.com/ssvlabs/ssv-spec/qbft"
spectypes "github.com/ssvlabs/ssv-spec/types"
)
Expand Down

0 comments on commit e0db3cc

Please sign in to comment.