remove other debugging

This commit is contained in:
Daniel Whitenack 2016-07-01 10:56:41 -05:00
parent 372efe2965
commit 271a42a5a1
1 changed files with 1 additions and 2 deletions

View File

@ -56,7 +56,7 @@ func MakeNode(inputDir string) *node.Node {
set.String("rpcport", "8545", "rpc port")
set.String("rpcapi", "db,eth,net,web3,shh,admin", "rpc api(s)")
set.String("datadir", datadir, "data directory for geth")
//set.String("logdir", datadir, "log dir for glog")
set.String("logdir", datadir, "log dir for glog")
c = cli.NewContext(nil, set, nil)
// Construct the textual version string from the individual components
@ -71,7 +71,6 @@ func MakeNode(inputDir string) *node.Node {
utils.DebugSetup(c)
currentNode, accountSync = utils.MakeSystemNode(clientIdentifier, vString, rConfig, makeDefaultExtra(), c)
fmt.Println(accountSync)
return currentNode
}