From 2ff56018304e99929f2f503b259630642ecc68aa Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Sat, 15 Jun 2024 18:48:24 +0100 Subject: [PATCH] Correct name of section used in persistence. --- zstack.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zstack.go b/zstack.go index 54b4ba7..96be851 100644 --- a/zstack.go +++ b/zstack.go @@ -97,7 +97,7 @@ func New(uart io.ReadWriter, p persistence.Section) *ZStack { events: make(chan interface{}, DefaultInflightEvents), networkManagerStop: make(chan bool, 1), networkManagerIncoming: make(chan interface{}, DefaultInflightEvents), - nodeTable: newNodeTable(p.Section("NodeTable")), + nodeTable: newNodeTable(p.Section("Nodes")), transactionIdStore: transactionIDs, persistence: p, }