-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock.go
76 lines (66 loc) · 1.97 KB
/
block.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
package main
import ("crypto/sha256"
"time"
)
// Block keeps block headers
// A Transaction is a unit of data that represents
// a transfer of value between two parties
type Block struct {
Hash []byte
PrevBlockHash []byte
Transactions []*Transaction
Timestamp int64
Nonce int
}
// HashTransactions returns a hash of the transactions in the block
func (b *Block) HashTXs() []byte {
var txHashes [][]byte
for _, tx := range b.Transactions {
txHashes = append(txHashes, tx.Hash)
}
result:= sha256.Sum256(Serialize(txHashes))
return result[:]
}
// NewBlock creates and returns Block, for testing purposes, mining
// can be activated or disabled using the boolean flag mine If mine is
// set to true, the nonce is computed so that the hash start with
// zeroBits
func NewBlock(txs []*Transaction, prevBHash []byte, mine bool, zeroBits int) *Block {
block := &Block{[]byte{}, prevBHash, txs, time.Now().Unix(), 0}
if mine{
block.Mine(zeroBits)
}
return block
}
// Creates and returns genesis Block, its hash must start with zeroBits
// The same as the new block, but with no previous hash
func NewGBlock(cbtx []*Transaction, zeroBits int) *Block {
return NewBlock(cbtx, nil, true, zeroBits)
}
// true if the block is correclty Hashed
func (block *Block) IsCorrectlyHashed(zeroBits int) bool {
return StartsWithXZeros(block.Hash, zeroBits)
}
// Hashes a block, private fnuction
func (block *Block) computeHash() []byte {
contents := Serialize([][]byte{
block.PrevBlockHash,
block.HashTXs(),
IntToHex(block.Timestamp),
IntToHex(int64(block.Nonce)),
})
result:=sha256.Sum256(contents)
return result[:]
}
// Computes and sets the hash of "block"
func (block *Block) SetHash(){
block.Hash = block.computeHash()
}
// Mines a block : iterates over nonces until the hash starts with the
// number of zeros defined by zeroBits
func (block *Block) Mine(zeroBits int) {
for !block.IsCorrectlyHashed(zeroBits) {
block.Nonce += 1
block.SetHash()
}
}