Skip to content

Commit

Permalink
fix test compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
nkryuchkov committed Jul 16, 2024
1 parent 7f673f6 commit b33e287
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion operator/duties/voluntary_exit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ import (
spectypes "github.com/ssvlabs/ssv-spec/types"

"github.com/ssvlabs/ssv/beacon/goclient"
"github.com/ssvlabs/ssv/operator/duties/dutystore"
mocknetwork "github.com/ssvlabs/ssv/protocol/v2/blockchain/beacon/mocks"
)

func TestVoluntaryExitHandler_HandleDuties(t *testing.T) {
exitCh := make(chan ExitDescriptor)
handler := NewVoluntaryExitHandler(exitCh)
handler := NewVoluntaryExitHandler(dutystore.NewVoluntaryExit(), exitCh)

currentSlot := &SafeValue[phase0.Slot]{}
currentSlot.Set(0)
Expand Down

0 comments on commit b33e287

Please sign in to comment.