aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-02-10 20:30:07 +0800
committerFelix Lange <fjl@twurst.com>2015-02-10 20:30:07 +0800
commita21b30c9012572e1bbed62ac43bdb1bdc89dab92 (patch)
tree9acbbd77f44890de589d72469c4abacab4dc8499 /eth
parenta3cd2187194b79cd8b14c4ec4f1abca91a0147e0 (diff)
downloadgo-tangerine-a21b30c9012572e1bbed62ac43bdb1bdc89dab92.tar
go-tangerine-a21b30c9012572e1bbed62ac43bdb1bdc89dab92.tar.gz
go-tangerine-a21b30c9012572e1bbed62ac43bdb1bdc89dab92.tar.bz2
go-tangerine-a21b30c9012572e1bbed62ac43bdb1bdc89dab92.tar.lz
go-tangerine-a21b30c9012572e1bbed62ac43bdb1bdc89dab92.tar.xz
go-tangerine-a21b30c9012572e1bbed62ac43bdb1bdc89dab92.tar.zst
go-tangerine-a21b30c9012572e1bbed62ac43bdb1bdc89dab92.zip
eth: remove unused Ethereum sync fields
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/eth/backend.go b/eth/backend.go
index e8555061d..f3e4842a7 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -4,7 +4,6 @@ import (
"crypto/ecdsa"
"fmt"
"strings"
- "sync"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/crypto"
@@ -92,9 +91,6 @@ type Ethereum struct {
logger ethlogger.LogSystem
- synclock sync.Mutex
- syncGroup sync.WaitGroup
-
Mining bool
}