From bb73be873f760331bbb824a52d11545809f64302 Mon Sep 17 00:00:00 2001 From: meows Date: Fri, 20 Mar 2020 06:59:04 -0500 Subject: [PATCH] rpc: make comment more informative and neutral Signed-off-by: meows --- rpc/endpoints.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rpc/endpoints.go b/rpc/endpoints.go index 540c5b7713..09f389d71b 100644 --- a/rpc/endpoints.go +++ b/rpc/endpoints.go @@ -22,8 +22,9 @@ import ( "github.com/ethereum/go-ethereum/log" ) -// checkModuleAvailability check that all names given in modules are actually -// available API services. It assumes that the special snowflake "rpc" module is always available. +// checkModuleAvailability checks that all names given in modules are actually +// available API services. It assumes that the MetadataApi module ("rpc") is always available; +// the registration of this "rpc" module happens in NewServer() and is thus common to all endpoints. func checkModuleAvailability(modules []string, apis []API) (bad, available []string) { availableSet := make(map[string]struct{}) for _, api := range apis {