aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorBas van Kervel <basvankervel@gmail.com>2017-01-17 18:35:07 +0800
committerBas van Kervel <basvankervel@gmail.com>2017-01-17 19:13:50 +0800
commit54a65e6d87800ba5ecb8a14621d4aff0bfa56ada (patch)
tree92463956d946655c9ba04f7505a7911dea1f919a /eth
parent26d385c18b5eb003d9a69ff618c78acbe594db44 (diff)
downloadgo-tangerine-54a65e6d87800ba5ecb8a14621d4aff0bfa56ada.tar
go-tangerine-54a65e6d87800ba5ecb8a14621d4aff0bfa56ada.tar.gz
go-tangerine-54a65e6d87800ba5ecb8a14621d4aff0bfa56ada.tar.bz2
go-tangerine-54a65e6d87800ba5ecb8a14621d4aff0bfa56ada.tar.lz
go-tangerine-54a65e6d87800ba5ecb8a14621d4aff0bfa56ada.tar.xz
go-tangerine-54a65e6d87800ba5ecb8a14621d4aff0bfa56ada.tar.zst
go-tangerine-54a65e6d87800ba5ecb8a14621d4aff0bfa56ada.zip
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 dec8c0c6e..a77b21026 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -77,7 +77,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,