mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-10 13:19:04 +00:00
Merge pull request #1813 from kobigurk/develop
cmd/geth: extradata is correcly initialized with console
This commit is contained in:
commit
bdf4fd6091
1 changed files with 3 additions and 1 deletions
|
|
@ -360,7 +360,7 @@ func main() {
|
|||
}
|
||||
}
|
||||
|
||||
// MakeExtra resolves extradata for the miner from a flag or returns a default.
|
||||
// makeExtra resolves extradata for the miner from a flag or returns a default.
|
||||
func makeExtra(ctx *cli.Context) []byte {
|
||||
if ctx.GlobalIsSet(ExtraDataFlag.Name) {
|
||||
return []byte(ctx.GlobalString(ExtraDataFlag.Name))
|
||||
|
|
@ -444,6 +444,8 @@ func console(ctx *cli.Context) {
|
|||
utils.CheckLegalese(ctx.GlobalString(utils.DataDirFlag.Name))
|
||||
|
||||
cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx)
|
||||
cfg.ExtraData = makeExtra(ctx)
|
||||
|
||||
ethereum, err := eth.New(cfg)
|
||||
if err != nil {
|
||||
utils.Fatalf("%v", err)
|
||||
|
|
|
|||
Loading…
Reference in a new issue