diff options
Diffstat (limited to 'p2p/discover/table.go')
-rw-r--r-- | p2p/discover/table.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/p2p/discover/table.go b/p2p/discover/table.go index 891bbfd05..e21d9f2f4 100644 --- a/p2p/discover/table.go +++ b/p2p/discover/table.go @@ -62,13 +62,12 @@ type bucket struct { } func newTable(t transport, ourID NodeID, ourAddr *net.UDPAddr, nodeDBPath string) *Table { - // If no seed cache was given, use an in-memory one + // If no node database was given, use an in-memory one db, err := newNodeDB(nodeDBPath) if err != nil { glog.V(logger.Warn).Infoln("Failed to open node database:", err) db, _ = newNodeDB("") } - // Create the bootstrap table tab := &Table{ net: t, db: db, @@ -90,7 +89,7 @@ func (tab *Table) Self() *Node { return tab.self } -// Close terminates the network listener and flushes the seed cache. +// Close terminates the network listener and flushes the node database. func (tab *Table) Close() { tab.net.close() tab.db.close() |