Skip to content

Commit

Permalink
fix build (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
KonradStaniec authored Dec 4, 2024
1 parent aa32cd4 commit bee9f30
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions x/btcstaking/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -454,10 +454,9 @@ func TestRejectActivationOfTheDelegationCreatedWithOldParams(t *testing.T) {
require.NotNil(t, actualDel)

tipHeight := h.BTCLightClientKeeper.GetTipInfo(h.Ctx).Height
checkpointTimeout := h.BTCCheckpointKeeper.GetParams(h.Ctx).CheckpointFinalizationTimeout
covenantQuorum := h.BTCStakingKeeper.GetParams(h.Ctx).CovenantQuorum

status := actualDel.GetStatus(tipHeight, checkpointTimeout, covenantQuorum)
status := actualDel.GetStatus(tipHeight, covenantQuorum)
require.Equal(t, types.BTCDelegationStatus_VERIFIED, status)

msg := &types.MsgAddBTCDelegationInclusionProof{
Expand Down

0 comments on commit bee9f30

Please sign in to comment.