diff --git a/cmd/geth/usage.go b/cmd/geth/usage.go index a674eca4f1..d58f536d07 100644 --- a/cmd/geth/usage.go +++ b/cmd/geth/usage.go @@ -74,6 +74,7 @@ var AppHelpFlagGroups = []flagGroup{ utils.NetworkIdFlag, utils.TestnetFlag, utils.RinkebyFlag, + utils.GoerliFlag, utils.SyncModeFlag, utils.GCModeFlag, utils.EthStatsURLFlag, diff --git a/consensus/aura/aura.go b/consensus/aura/aura.go index 9901337efa..33f5a00b56 100644 --- a/consensus/aura/aura.go +++ b/consensus/aura/aura.go @@ -693,9 +693,9 @@ func (c *Aura) Close() error { // controlling the signer voting. func (c *Aura) APIs(chain consensus.ChainReader) []rpc.API { return []rpc.API{{ - Namespace: "aura", + Namespace: "clique", Version: "1.0", - Service: &API{chain: chain, aura: c}, + Service: &API{chain: chain, clique: c}, Public: false, }} } \ No newline at end of file