-
Notifications
You must be signed in to change notification settings - Fork 0
/
block.go
82 lines (68 loc) · 1.67 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
package main
import (
"bytes"
"crypto/sha256"
"encoding/gob"
"fmt"
"log"
"strconv"
"time"
)
// Block is a container for data in blockchain
type Block struct {
Timestamp int64
Transactions []*Transaction
PrevBlockHash []byte
Nonce int
Hash []byte
}
// HashTransactions returns the hash of all transactions in the block
func (b *Block) HashTransactions() []byte {
var txHashes [][]byte
var hash [32]byte
for _, tx := range b.Transactions {
txHashes = append(txHashes, tx.ID)
}
hash = sha256.Sum256(bytes.Join(txHashes, []byte{}))
return hash[:]
}
// NewBlock is a constructor for a block
func NewBlock(txs []*Transaction, prevBlockHash []byte) *Block {
block := &Block{time.Now().Unix(), txs, prevBlockHash, 0, []byte{}}
pow := NewProofOfWork(block)
nonce, hash := pow.Run()
block.Hash = hash[:]
block.Nonce = nonce
return block
}
// 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.Panicln(err)
}
return result.Bytes()
}
// PrintBlock prints the block info
func (b *Block) PrintBlock() {
fmt.Printf("PrevHash: %x\n", b.PrevBlockHash)
fmt.Printf("Hash: %x\n", b.Hash)
for _, tx := range b.Transactions {
fmt.Printf("Input: %v\n", tx.Vin)
fmt.Printf("Output: %v\n", tx.Vout)
}
fmt.Printf("PoW: %s\n", strconv.FormatBool(NewProofOfWork(b).Validate()))
fmt.Println()
}
// DeserializeBlock deserializes a block
func DeserializeBlock(data []byte) *Block {
var block Block
decoder := gob.NewDecoder(bytes.NewReader(data))
err := decoder.Decode(&block)
if err != nil {
log.Panicln(err)
}
return &block
}