This repository has been archived by the owner on Jan 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
block.go
93 lines (77 loc) · 2.14 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package main
import (
"bytes"
"encoding/gob"
"log"
"time"
)
// Block represents a block in the blockchain
type Block struct {
Timestamp int64
Transactions []*Transaction
Products []*Product
Organisation *Organisation
PrevBlockHash []byte
Hash []byte
Nonce int
Height int
}
// NewBlock creates and returns Block
func NewBlock(transactions []*Transaction, products []*Product, organisation *Organisation, prevBlockHash []byte, height int) *Block {
var block *Block
if transactions != nil {
block = &Block{time.Now().Unix(), transactions, nil, nil, prevBlockHash, []byte{}, 0, height}
} else if products != nil {
block = &Block{time.Now().Unix(), nil, products, nil, prevBlockHash, []byte{}, 0, height}
} else {
block = &Block{time.Now().Unix(), nil, nil, organisation, prevBlockHash, []byte{}, 0, height}
}
pow := NewProofOfWork(block)
nonce, hash := pow.Run()
block.Hash = hash[:]
block.Nonce = nonce
return block
}
// HashTransactionsOrProducts returns a hash of the transactions or products in the block
func (b *Block) HashTransactionsOrProducts() []byte {
if b.Transactions != nil {
var transactions [][]byte
for _, tx := range b.Transactions {
transactions = append(transactions, tx.Serialize())
}
mTree := NewMerkleTree(transactions)
return mTree.RootNode.Data
} else if b.Products != nil {
var products [][]byte
for _, p := range b.Products {
products = append(products, p.Serialize())
}
mTree := NewMerkleTree(products)
return mTree.RootNode.Data
} else {
var organisations [][]byte
organisations = append(organisations, b.Organisation.Serialize())
mTree := NewMerkleTree(organisations)
return mTree.RootNode.Data
}
}
// Serialize serializes the block
func (b *Block) Serialize() []byte {
var result bytes.Buffer
encoder := gob.NewEncoder(&result)
err := encoder.Encode(b)
if err != nil {
log.Panic(err)
}
return result.Bytes()
}
// DeserializeBlock deserializes a block
func DeserializeBlock(d []byte) *Block {
var block Block
decoder := gob.NewDecoder(bytes.NewReader(d))
err := decoder.Decode(&block)
if err != nil {
log.Panic(err)
}
return &block
}