Commit dbe42ce4 authored by obscuren's avatar obscuren

Mining using a different hash now

parent 77309492
......@@ -47,9 +47,7 @@ OS X 10.9+:
Build
=======
* `go get -u -t github.com/ethereum/go-ethereum`
* `cd $GOPATH/src/github.com/ethereum/go-etherum`
* `go build`
`go get -u -t github.com/ethereum/go-ethereum`
Command line options
......
......@@ -92,9 +92,13 @@ func main() {
ethereum.BlockManager.ApplyTransactions(block, block.Transactions())
// Search the nonce
block.Nonce = pow.Search(block)
ethereum.BlockManager.ProcessBlock(block)
//ethereum.Broadcast(ethwire.MsgBlockTy, []interface{}{block.RlpValue().Value})
log.Println("\n+++++++ MINED BLK +++++++\n", block.String())
err := ethereum.BlockManager.ProcessBlock(block)
if err != nil {
log.Println(err)
} else {
//ethereum.Broadcast(ethwire.MsgBlockTy, []interface{}{block.RlpValue().Value})
log.Println("\n+++++++ MINED BLK +++++++\n", block.String())
}
}
}()
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment