Skip to content

Commit

Permalink
fix lint in query
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed Jan 15, 2025
1 parent c6eed5a commit f244c8a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions persist/sqlite/contracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,7 @@ func (s *Store) RebroadcastFormationSets(minNegotiationheight uint64) (rebroadca
}
rebroadcast = append(rebroadcast, formationSet)
}
if err := rows.Err(); err != nil {
return err
}
return nil
return rows.Err()
})
return
}
Expand Down

0 comments on commit f244c8a

Please sign in to comment.