Not using notification channels

Mistake

This is 1 byte of storage

notification := make(chan bool)

Fix

This takes zero bytes of storage

notification := make(chan struct{})

References