mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-24 00:39:26 +00:00
params: clarify consensus engine config Strings (#29643)
Define these on a value receiever so that nil is shown differently.
This commit is contained in:
parent
4253030ef6
commit
4bdbaab471
1 changed files with 3 additions and 3 deletions
|
|
@ -374,7 +374,7 @@ type ChainConfig struct {
|
||||||
type EthashConfig struct{}
|
type EthashConfig struct{}
|
||||||
|
|
||||||
// String implements the stringer interface, returning the consensus engine details.
|
// String implements the stringer interface, returning the consensus engine details.
|
||||||
func (c *EthashConfig) String() string {
|
func (c EthashConfig) String() string {
|
||||||
return "ethash"
|
return "ethash"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -385,8 +385,8 @@ type CliqueConfig struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// String implements the stringer interface, returning the consensus engine details.
|
// String implements the stringer interface, returning the consensus engine details.
|
||||||
func (c *CliqueConfig) String() string {
|
func (c CliqueConfig) String() string {
|
||||||
return "clique"
|
return fmt.Sprintf("clique(period: %d, epoch: %d)", c.Period, c.Epoch)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Description returns a human-readable description of ChainConfig.
|
// Description returns a human-readable description of ChainConfig.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue