From 3123b6d895c5bf25bf1a6631770378c7a4403b48 Mon Sep 17 00:00:00 2001 From: battlmonstr Date: Thu, 10 Mar 2022 13:15:15 +0100 Subject: [PATCH] kv: add NodeRecords nodedb table (#359) --- kv/tables.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/kv/tables.go b/kv/tables.go index c51500190..78b7f91f5 100644 --- a/kv/tables.go +++ b/kv/tables.go @@ -282,7 +282,12 @@ const ( // Proof-of-stake // Beacon chain head that is been executed at the current time CurrentExecutionPayload = "CurrentExecutionPayload" - // this bucket stored in separated database + + // Node database tables (see nodedb.go) + + // NodeRecords stores P2P node records (ENR) + NodeRecords = "NodeRecord" + // Inodes stores P2P discovery service info about the nodes Inodes = "Inode" // Transaction senders - stored separately from the block bodies