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{})
This is 1 byte of storage
notification := make(chan bool)
This takes zero bytes of storage
notification := make(chan struct{})