aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-09 18:00:51 +0800
committerobscuren <geffobscura@gmail.com>2015-05-09 18:00:51 +0800
commitcb1fa523e4930841f4cc92689c850c7831810d03 (patch)
tree5646ec05830de248a8f51a740d4ccb0fe603d9ae /eth
parentc8fc4cebe63073fd77d5f553a4f0cec36a4ccb4b (diff)
downloadgo-tangerine-cb1fa523e4930841f4cc92689c850c7831810d03.tar
go-tangerine-cb1fa523e4930841f4cc92689c850c7831810d03.tar.gz
go-tangerine-cb1fa523e4930841f4cc92689c850c7831810d03.tar.bz2
go-tangerine-cb1fa523e4930841f4cc92689c850c7831810d03.tar.lz
go-tangerine-cb1fa523e4930841f4cc92689c850c7831810d03.tar.xz
go-tangerine-cb1fa523e4930841f4cc92689c850c7831810d03.tar.zst
go-tangerine-cb1fa523e4930841f4cc92689c850c7831810d03.zip
cmd/geth, cmd/mist, eth, flags: renamed loglevel to verbosity
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go18
1 files changed, 11 insertions, 7 deletions
diff --git a/eth/backend.go b/eth/backend.go
index 0f23cde2f..8f0789467 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -5,6 +5,7 @@ import (
"encoding/json"
"fmt"
"io/ioutil"
+ "math/big"
"os"
"path"
"path/filepath"
@@ -53,12 +54,12 @@ type Config struct {
BlockChainVersion int
SkipBcVersionCheck bool // e.g. blockchain export
- DataDir string
- LogFile string
- LogLevel int
- LogJSON string
- VmDebug bool
- NatSpec bool
+ DataDir string
+ LogFile string
+ Verbosity int
+ LogJSON string
+ VmDebug bool
+ NatSpec bool
MaxPeers int
MaxPendingPeers int
@@ -76,6 +77,7 @@ type Config struct {
Dial bool
Etherbase string
+ GasPrice *big.Int
MinerThreads int
AccountManager *accounts.Manager
@@ -200,7 +202,7 @@ type Ethereum struct {
func New(config *Config) (*Ethereum, error) {
// Bootstrap database
- logger.New(config.DataDir, config.LogFile, config.LogLevel)
+ logger.New(config.DataDir, config.LogFile, config.Verbosity)
if len(config.LogJSON) > 0 {
logger.NewJSONsystem(config.DataDir, config.LogJSON)
}
@@ -266,6 +268,8 @@ func New(config *Config) (*Ethereum, error) {
eth.blockProcessor = core.NewBlockProcessor(stateDb, extraDb, eth.pow, eth.txPool, eth.chainManager, eth.EventMux())
eth.chainManager.SetProcessor(eth.blockProcessor)
eth.miner = miner.New(eth, eth.pow, config.MinerThreads)
+ eth.miner.SetGasPrice(config.GasPrice)
+
eth.protocolManager = NewProtocolManager(config.ProtocolVersion, config.NetworkId, eth.eventMux, eth.txPool, eth.chainManager, eth.downloader)
if config.Shh {
eth.whisper = whisper.New()