aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-08-20 03:46:01 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-08-20 03:46:01 +0800
commit269c5c71072f9e17e6387f853d626bff1160db5c (patch)
tree3a4b1cca074e10495fa1b8f5611a40ad1fba69e8 /cmd
parent382d35bf403ab5dd9b0d2fe3a87c3960902d6e57 (diff)
downloaddexon-269c5c71072f9e17e6387f853d626bff1160db5c.tar
dexon-269c5c71072f9e17e6387f853d626bff1160db5c.tar.gz
dexon-269c5c71072f9e17e6387f853d626bff1160db5c.tar.bz2
dexon-269c5c71072f9e17e6387f853d626bff1160db5c.tar.lz
dexon-269c5c71072f9e17e6387f853d626bff1160db5c.tar.xz
dexon-269c5c71072f9e17e6387f853d626bff1160db5c.tar.zst
dexon-269c5c71072f9e17e6387f853d626bff1160db5c.zip
Revert "fdtrack: temporary hack for tracking file descriptor usage"
This reverts commit 5c949d3b3ba81ea0563575b19a7b148aeac4bf61.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/main.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index 2dc3c438f..07c4daf60 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -37,7 +37,6 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/ethdb"
- "github.com/ethereum/go-ethereum/fdtrack"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/metrics"
@@ -546,9 +545,6 @@ func startEth(ctx *cli.Context, eth *eth.Ethereum) {
// Start Ethereum itself
utils.StartEthereum(eth)
- // Start logging file descriptor stats.
- fdtrack.Start()
-
am := eth.AccountManager()
account := ctx.GlobalString(utils.UnlockedAccountFlag.Name)
accounts := strings.Split(account, " ")