forked from Jeiwan/blockchain_go
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathproofofwork.go
84 lines (67 loc) · 1.4 KB
/
proofofwork.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package main
import (
"bytes"
"crypto/sha256"
"fmt"
"math"
"math/big"
)
var (
maxNonce = math.MaxInt64
)
const difficulty = 16
// ProofOfWork represents a proof-of-work
type ProofOfWork struct {
block *Block
target *big.Int
}
func newProofOfWork(b *Block) *ProofOfWork {
target := big.NewInt(1)
target.Lsh(target, uint(256-difficulty))
pow := &ProofOfWork{b, target}
return pow
}
func (pow *ProofOfWork) prepareData(nonce int) []byte {
txAsBytes := []byte{}
for _, tx := range pow.block.Transactions {
txAsBytes = append(txAsBytes, tx.serialize()...)
}
data := bytes.Join(
[][]byte{
txAsBytes,
pow.block.Header.PrevBlockHash,
intToBytes(int(pow.block.Header.Timestamp)),
intToBytes(pow.block.Header.Height),
intToBytes(nonce),
},
[]byte{},
)
return data
}
func (pow *ProofOfWork) run() (int, []byte) {
var hashInt big.Int
var hash [32]byte
nonce := 0
Info.Println("Mining...")
for nonce < maxNonce {
data := pow.prepareData(nonce)
hash = sha256.Sum256(data)
fmt.Printf("\r%x", hash)
hashInt.SetBytes(hash[:])
if hashInt.Cmp(pow.target) == -1 {
break
} else {
nonce++
}
}
fmt.Printf("\n\n")
return nonce, hash[:]
}
func (pow *ProofOfWork) validate() bool {
var hashInt big.Int
data := pow.prepareData(pow.block.Header.Nonce)
hash := sha256.Sum256(data)
hashInt.SetBytes(hash[:])
isValid := hashInt.Cmp(pow.target) == -1
return isValid
}