From fe0d8d81b47aa614e2a2b3dfa54f781d876e01a2 Mon Sep 17 00:00:00 2001 From: Emile Date: Wed, 20 Mar 2019 20:31:14 +0100 Subject: the GetStar function now uses a given db. --- db_actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_actions.go b/db_actions.go index a51bcfc..a9098af 100644 --- a/db_actions.go +++ b/db_actions.go @@ -499,7 +499,7 @@ func getQuadrantNodeID(parentNodeID int64, quadrant int64) int64 { } // GetStar returns the star with the given ID from the stars table -func GetStar(starID int64) structs.Star2D { +func GetStar(db *sql.DB, starID int64) structs.Star2D { var x, y, vx, vy, m float64 // get the star from the stars table -- cgit 1.4.1