good morning!!!!

Skip to content
Snippets Groups Projects
Commit 16a58f8f authored by Taylor Gerring's avatar Taylor Gerring
Browse files

Always return 3 strings

parent 31879eca
Loading
......@@ -54,16 +54,15 @@ out:
}
}
func (a *Agent) GetWork() []string {
func (a *Agent) GetWork() [3]string {
// TODO return HashNoNonce, DAGSeedHash, Difficulty
var res = []string{}
var res [3]string
// XXX Wait here untill work != nil ?.
if a.work != nil {
// Ideally append in 1 call once params are determined
res = append(res, a.work.HashNoNonce().Hex()) // Header Hash No Nonce
res = append(res, common.Hash{}.Hex()) // DAG Seed
res = append(res, common.Hash{}.Hex()) // Difficulty
res[0] = a.work.HashNoNonce().Hex() // Header Hash No Nonce
res[1] = common.Hash{}.Hex() // DAG Seed
res[2] = common.Hash{}.Hex() // Difficulty
}
return res
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment