summaryrefslogtreecommitdiff
path: root/helpers.go
diff options
context:
space:
mode:
Diffstat (limited to 'helpers.go')
-rw-r--r--helpers.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/helpers.go b/helpers.go
index eb54261..e9864ae 100644
--- a/helpers.go
+++ b/helpers.go
@@ -107,13 +107,6 @@ func (c *Cluster) AddDroplet(uuid string, hostname string, cpus int, mem int) *D
d.Cpus = 1
}
d.Memory = SetGB(mem * 32)
- if d.Humantest == nil {
- var newInfo StorageInfo
- newInfo = StorageInfo{Capacity: 64}
- d.Humantest = &newInfo
- } else {
- d.Humantest.Capacity = SetGB(mem * 32)
- }
c.Droplets = append(c.Droplets, d)
return d
}