configuring goerli cli flag

This commit is contained in:
priom 2018-09-08 10:28:02 -04:00
parent 5c2696495c
commit 66ef7f7676
2 changed files with 3 additions and 2 deletions

View file

@ -74,6 +74,7 @@ var AppHelpFlagGroups = []flagGroup{
utils.NetworkIdFlag,
utils.TestnetFlag,
utils.RinkebyFlag,
utils.GoerliFlag,
utils.SyncModeFlag,
utils.GCModeFlag,
utils.EthStatsURLFlag,

View file

@ -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,
}}
}