From 1410712b1c94608ee93a748f4e9b421e6a51acab Mon Sep 17 00:00:00 2001 From: Reece Williams Date: Tue, 17 Dec 2024 19:11:17 -0600 Subject: [PATCH] fix lint --- simulation/operations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulation/operations.go b/simulation/operations.go index d0de294..ab03a33 100644 --- a/simulation/operations.go +++ b/simulation/operations.go @@ -122,7 +122,7 @@ func SimulateMsgCreateValidator(txGen client.TxConfig, k keeper.Keeper) simtypes vals, err := k.PendingValidators.Get(ctx) if err != nil { - return simtypes.OperationMsg{}, nil, nil + return simtypes.OperationMsg{}, nil, nil // nolint:nilerr } for _, v := range vals.Validators { if v.OperatorAddress == address.String() {