diff options
author | Felix Lange <fjl@twurst.com> | 2015-02-10 20:30:07 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-02-10 20:30:07 +0800 |
commit | a21b30c9012572e1bbed62ac43bdb1bdc89dab92 (patch) | |
tree | 9acbbd77f44890de589d72469c4abacab4dc8499 /eth/backend.go | |
parent | a3cd2187194b79cd8b14c4ec4f1abca91a0147e0 (diff) | |
download | go-tangerine-a21b30c9012572e1bbed62ac43bdb1bdc89dab92.tar.gz go-tangerine-a21b30c9012572e1bbed62ac43bdb1bdc89dab92.tar.zst go-tangerine-a21b30c9012572e1bbed62ac43bdb1bdc89dab92.zip |
eth: remove unused Ethereum sync fields
Diffstat (limited to 'eth/backend.go')
-rw-r--r-- | eth/backend.go | 4 |
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 } |