From fa729a0c55aa4b00c2ac33d0fcee8acabed2f737 Mon Sep 17 00:00:00 2001
From: obscuren <geffobscura@gmail.com>
Date: Mon, 20 Apr 2015 00:41:50 +0200
Subject: miner: go fmt

---
 miner/remote_agent.go | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

(limited to 'miner')

diff --git a/miner/remote_agent.go b/miner/remote_agent.go
index fe8cc6b63..87456cfec 100644
--- a/miner/remote_agent.go
+++ b/miner/remote_agent.go
@@ -1,7 +1,7 @@
 package miner
 
 import (
-    "math/big"
+	"math/big"
 
 	"github.com/ethereum/ethash"
 	"github.com/ethereum/go-ethereum/common"
@@ -59,19 +59,18 @@ out:
 func (a *RemoteAgent) GetWork() [3]string {
 	var res [3]string
 
-	// XXX Wait here until work != nil ?
 	if a.work != nil {
 		a.currentWork = a.work
 
 		res[0] = a.work.HashNoNonce().Hex()
 		seedHash, _ := ethash.GetSeedHash(a.currentWork.NumberU64())
 		res[1] = common.Bytes2Hex(seedHash)
-        n := new(big.Int)
-        n.SetInt64(1)
-        n.Lsh(n, 255)
-        n.Div(n, a.work.Difficulty())
-        n.Lsh(n, 1)
-        res[2] = common.Bytes2Hex(n.Bytes())
+		// Calculate the "target" to be returned to the external miner
+		n := big.NewInt(1)
+		n.Lsh(n, 255)
+		n.Div(n, a.work.Difficulty())
+		n.Lsh(n, 1)
+		res[2] = common.Bytes2Hex(n.Bytes())
 	}
 
 	return res
-- 
cgit v1.2.3