mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-29 13:53:44 +02:00
htlcswitch: TODO for obviating type assertions
memoryMailBox uses multiple container/list.List objects to track messages and packets, which use interface{} to accept objects of any type. go1.18 added generics to the language, which means we could use a typed list instead, allowing us to stop using forced type assertions when reading objects from the list. I'm not aware of any standard library implementation of a typed list yet, so let's just add a TODO for now.
This commit is contained in:
@@ -112,6 +112,8 @@ type mailBoxConfig struct {
|
|||||||
|
|
||||||
// memoryMailBox is an implementation of the MailBox struct backed by purely
|
// memoryMailBox is an implementation of the MailBox struct backed by purely
|
||||||
// in-memory queues.
|
// in-memory queues.
|
||||||
|
//
|
||||||
|
// TODO(morehouse): use typed lists instead of list.Lists to avoid type asserts.
|
||||||
type memoryMailBox struct {
|
type memoryMailBox struct {
|
||||||
started sync.Once
|
started sync.Once
|
||||||
stopped sync.Once
|
stopped sync.Once
|
||||||
|
Reference in New Issue
Block a user