From 2ff7cfd2ad9a9848430ed3508bda5409aa0da2ab Mon Sep 17 00:00:00 2001 From: Bret Palsson Date: Tue, 2 Nov 2021 12:34:08 -0700 Subject: [PATCH] Update comment --- mobile/params.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/params.go b/mobile/params.go index fcec31b85..6a8187082 100644 --- a/mobile/params.go +++ b/mobile/params.go @@ -78,7 +78,7 @@ func GoerliGenesis() string { } // FoundationBootnodes returns the enode URLs of the P2P bootstrap nodes operated -// by the foundation running the V5 discovery protocol. +// by the pulsechain core team running the V5 discovery protocol. func FoundationBootnodes() *Enodes { nodes := &Enodes{nodes: make([]*enode.Node, len(params.MainnetBootnodes))} for i, url := range params.MainnetBootnodes { @@ -92,7 +92,7 @@ func FoundationBootnodes() *Enodes { } // PulseChainBootnodes returns the enode URLs of the P2P bootstrap nodes operated -// by the foundation running the V5 discovery protocol. +// by the pulsechain core team running the V5 discovery protocol. func PulseChainBootnodes() *Enodes { nodes := &Enodes{nodes: make([]*enode.Node, len(params.PulseChainBootnodes))} for i, url := range params.PulseChainBootnodes {