diff options
-rw-r--r-- | cmd/utils/flags.go | 4 | ||||
-rw-r--r-- | eth/downloader/downloader.go | 4 | ||||
-rw-r--r-- | params/protocol_params.go | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 8e89b9fb1..6dc19eda9 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -181,7 +181,7 @@ var ( GasPriceFlag = cli.StringFlag{ Name: "gasprice", Usage: "Minimal gas price to accept for mining a transactions", - Value: new(big.Int).Mul(big.NewInt(50), common.Shannon).String(), + Value: new(big.Int).Mul(big.NewInt(20), common.Shannon).String(), } ExtraDataFlag = cli.StringFlag{ Name: "extradata", @@ -350,7 +350,7 @@ var ( GpoMinGasPriceFlag = cli.StringFlag{ Name: "gpomin", Usage: "Minimum suggested gas price", - Value: new(big.Int).Mul(big.NewInt(50), common.Shannon).String(), + Value: new(big.Int).Mul(big.NewInt(20), common.Shannon).String(), } GpoMaxGasPriceFlag = cli.StringFlag{ Name: "gpomax", diff --git a/eth/downloader/downloader.go b/eth/downloader/downloader.go index 017d25704..143d8bde7 100644 --- a/eth/downloader/downloader.go +++ b/eth/downloader/downloader.go @@ -1263,9 +1263,11 @@ func (d *Downloader) fetchHeaders(p *peer, td *big.Int, from uint64) error { case ch <- false: case <-d.cancelCh: } - return nil } } + if !cont { + return nil + } // Queue not yet full, fetch the next batch from += uint64(len(headers)) getHeaders(from) diff --git a/params/protocol_params.go b/params/protocol_params.go index 71c7035a4..45a9a2549 100644 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -41,7 +41,7 @@ var ( Sha256WordGas = big.NewInt(12) // MinGasLimit = big.NewInt(5000) // Minimum the gas limit may ever be. - GenesisGasLimit = big.NewInt(3141592) // Gas limit of the Genesis block. + GenesisGasLimit = big.NewInt(4712388) // Gas limit of the Genesis block. Sha3Gas = big.NewInt(30) // Once per SHA3 operation. Sha256Gas = big.NewInt(60) // |