mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
default gas limit to 11500000
This commit is contained in:
parent
8e260aa0a2
commit
2ea25e38fc
1 changed files with 1 additions and 1 deletions
|
|
@ -235,7 +235,7 @@ func dumpGenesis(ctx *cli.Context) error {
|
||||||
|
|
||||||
// if a datadir isn't specified, dump a generic dev-mode compatible genesis configuration
|
// if a datadir isn't specified, dump a generic dev-mode compatible genesis configuration
|
||||||
if ctx.IsSet(utils.DeveloperFlag.Name) && !ctx.IsSet(utils.DataDirFlag.Name) {
|
if ctx.IsSet(utils.DeveloperFlag.Name) && !ctx.IsSet(utils.DataDirFlag.Name) {
|
||||||
genesis := core.DeveloperGenesisBlock(10_000_000, nil)
|
genesis := core.DeveloperGenesisBlock(11_500_000, nil)
|
||||||
if err := json.NewEncoder(os.Stdout).Encode(genesis); err != nil {
|
if err := json.NewEncoder(os.Stdout).Encode(genesis); err != nil {
|
||||||
utils.Fatalf("could not encode genesis: %s", err)
|
utils.Fatalf("could not encode genesis: %s", err)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue