forked from hanniballei/Tiny-Bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
88 lines (75 loc) · 2.63 KB
/
main.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
//main.go
package main
import (
"fmt"
"goblockchain/blockchain"
"goblockchain/transaction"
)
func main() {
txPool := make([]*transaction.Transaction, 0)
var tempTx *transaction.Transaction
var ok bool
var property int
chain := blockchain.CreateBlockChain()
property, _ = chain.FindSpendableOutputs([]byte("Leo Cao"))
fmt.Println("Balance of Leo Cao: ", property)
tempTx, ok = chain.CreateTransaction([]byte("Leo Cao"), []byte("Krad"), 100)
if ok {
txPool = append(txPool, tempTx)
}
chain.Mine(txPool)
txPool = make([]*transaction.Transaction, 0)
property, _ = chain.FindSpendableOutputs([]byte("Leo Cao"))
fmt.Println("Balance of Leo Cao: ", property)
tempTx, ok = chain.CreateTransaction([]byte("Krad"), []byte("Exia"), 200) // this transaction is invalid
if ok {
txPool = append(txPool, tempTx)
}
tempTx, ok = chain.CreateTransaction([]byte("Krad"), []byte("Exia"), 50)
if ok {
txPool = append(txPool, tempTx)
}
tempTx, ok = chain.CreateTransaction([]byte("Leo Cao"), []byte("Exia"), 100)
if ok {
txPool = append(txPool, tempTx)
}
chain.Mine(txPool)
txPool = make([]*transaction.Transaction, 0)
property, _ = chain.FindSpendableOutputs([]byte("Leo Cao"))
fmt.Println("Balance of Leo Cao: ", property)
property, _ = chain.FindSpendableOutputs([]byte("Krad"))
fmt.Println("Balance of Krad: ", property)
property, _ = chain.FindSpendableOutputs([]byte("Exia"))
fmt.Println("Balance of Exia: ", property)
for _, block := range chain.Blocks {
fmt.Printf("Timestamp: %d\n", block.Timestamp)
fmt.Printf("hash: %x\n", block.Hash)
fmt.Printf("Previous hash: %x\n", block.PrevHash)
fmt.Printf("nonce: %d\n", block.Nonce)
fmt.Println("Proof of Work validation:", block.ValidatePoW())
}
//I want to show the bug at this version.
tempTx, ok = chain.CreateTransaction([]byte("Krad"), []byte("Exia"), 30)
if ok {
txPool = append(txPool, tempTx)
}
tempTx, ok = chain.CreateTransaction([]byte("Krad"), []byte("Leo Cao"), 30)
if ok {
txPool = append(txPool, tempTx)
}
chain.Mine(txPool)
txPool = make([]*transaction.Transaction, 0)
for _, block := range chain.Blocks {
fmt.Printf("Timestamp: %d\n", block.Timestamp)
fmt.Printf("hash: %x\n", block.Hash)
fmt.Printf("Previous hash: %x\n", block.PrevHash)
fmt.Printf("nonce: %d\n", block.Nonce)
fmt.Println("Proof of Work validation:", block.ValidatePoW())
}
property, _ = chain.FindSpendableOutputs([]byte("Leo Cao"))
fmt.Println("Balance of Leo Cao: ", property)
property, _ = chain.FindSpendableOutputs([]byte("Krad"))
fmt.Println("Balance of Krad: ", property)
property, _ = chain.FindSpendableOutputs([]byte("Exia"))
fmt.Println("Balance of Exia: ", property)
}