From c1d462ee5d3a22746e90531e06139b703f0e040f Mon Sep 17 00:00:00 2001 From: Javier Peletier Date: Mon, 10 Dec 2018 10:16:19 +0100 Subject: [PATCH] cmd/puppeth: fix rogue quote in alethGenesisSpec JSON (#18262) --- cmd/puppeth/genesis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/puppeth/genesis.go b/cmd/puppeth/genesis.go index 83212a126..1025dfe82 100644 --- a/cmd/puppeth/genesis.go +++ b/cmd/puppeth/genesis.go @@ -54,7 +54,7 @@ type alethGenesisSpec struct { BlockReward *hexutil.Big `json:"blockReward"` NetworkID hexutil.Uint64 `json:"networkID"` ChainID hexutil.Uint64 `json:"chainID"` - AllowFutureBlocks bool `json:"allowFutureBlocks""` + AllowFutureBlocks bool `json:"allowFutureBlocks"` } `json:"params"` Genesis struct {