Skip to content

Commit

Permalink
err is not checked
Browse files Browse the repository at this point in the history
  • Loading branch information
anhductn2001 committed Oct 20, 2023
1 parent 7b0a721 commit 407875e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion x/interchainstaking/keeper/delegation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,8 @@ func (suite *KeeperTestSuite) TestDelegationPlan() {

for _, val := range vals {
v := val
quicksilver.InterchainstakingKeeper.SetValidator(ctx, zone.ChainId, v)
err = quicksilver.InterchainstakingKeeper.SetValidator(ctx, zone.ChainId, v)
suite.NoError(err)
}

for _, delegation := range delegations.Delegations {
Expand Down

0 comments on commit 407875e

Please sign in to comment.