aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-01-17 20:38:57 +0800
committerGitHub <noreply@github.com>2017-01-17 20:38:57 +0800
commitd63752ef4d4e455f2f8f0acebf89e482534b0ef1 (patch)
tree91bdef3dc7974a1663d9b0de1d8efadbabb465af /eth
parent6fb76443b34ac5797c4b561ec38148eb3868a47e (diff)
parent54a65e6d87800ba5ecb8a14621d4aff0bfa56ada (diff)
downloaddexon-d63752ef4d4e455f2f8f0acebf89e482534b0ef1.tar
dexon-d63752ef4d4e455f2f8f0acebf89e482534b0ef1.tar.gz
dexon-d63752ef4d4e455f2f8f0acebf89e482534b0ef1.tar.bz2
dexon-d63752ef4d4e455f2f8f0acebf89e482534b0ef1.tar.lz
dexon-d63752ef4d4e455f2f8f0acebf89e482534b0ef1.tar.xz
dexon-d63752ef4d4e455f2f8f0acebf89e482534b0ef1.tar.zst
dexon-d63752ef4d4e455f2f8f0acebf89e482534b0ef1.zip
Merge pull request #3579 from bas-vk/natspec
cmd,eth,les,internal: remove natspec support
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/eth/backend.go b/eth/backend.go
index 02514c25b..e0233db36 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -78,7 +78,6 @@ type Config struct {
DatabaseCache int
DatabaseHandles int
- NatSpec bool
DocRoot string
AutoDAG bool
PowFake bool
@@ -140,7 +139,6 @@ type Ethereum struct {
etherbase common.Address
solcPath string
- NatSpec bool
netVersionId int
netRPCService *ethapi.PublicNetAPI
}
@@ -174,7 +172,6 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) {
shutdownChan: make(chan bool),
stopDbUpgrade: stopDbUpgrade,
netVersionId: config.NetworkId,
- NatSpec: config.NatSpec,
etherbase: config.Etherbase,
MinerThreads: config.MinerThreads,
AutoDAG: config.AutoDAG,