From b2075896d06e07a393c2ae9e9233fc7420f60e6b Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Wed, 16 Aug 2023 23:18:36 +0800 Subject: [PATCH] lint stake_test.go --- x/superfluid/keeper/stake_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/superfluid/keeper/stake_test.go b/x/superfluid/keeper/stake_test.go index ee53270b47a..fdbea7161b2 100644 --- a/x/superfluid/keeper/stake_test.go +++ b/x/superfluid/keeper/stake_test.go @@ -1685,7 +1685,7 @@ func (s *KeeperTestSuite) SetupUnbondConvertAndStakeTest(ctx sdk.Context, superf // We check the following in this method: // - if superfluid staked previously, check if the original validator's delegation has been deleted. // - Cehck if the delegation of the new validator matches what's expected. -func (s *KeeperTestSuite) delegationCheck(ctx sdk.Context, sender sdk.AccAddress, originalValAddr, newValAddr sdk.ValAddress, totalAmtConverted sdk.Int) { +func (s *KeeperTestSuite) delegationCheck(sender sdk.AccAddress, originalValAddr, newValAddr sdk.ValAddress, totalAmtConverted sdk.Int) { if !originalValAddr.Empty() { // check if original superfluid staked lock's delgation is successfully deleted _, found := s.App.StakingKeeper.GetDelegation(s.Ctx, sender, originalValAddr)