2017-10-21 21:13:25 -05:00
|
|
|
package bc
|
2017-08-15 02:29:52 -05:00
|
|
|
|
|
|
|
import (
|
2017-08-28 00:11:51 -05:00
|
|
|
"bytes"
|
|
|
|
"encoding/gob"
|
2017-10-21 21:49:02 -05:00
|
|
|
"fmt"
|
2017-08-28 00:11:51 -05:00
|
|
|
"log"
|
2017-10-21 21:49:02 -05:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2017-08-15 02:29:52 -05:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2017-09-10 00:02:46 -05:00
|
|
|
// Block represents a block in the blockchain
|
2017-08-15 02:29:52 -05:00
|
|
|
type Block struct {
|
2017-08-17 01:04:56 -05:00
|
|
|
Timestamp int64
|
2017-09-02 21:45:49 -05:00
|
|
|
Transactions []*Transaction
|
2017-08-17 01:04:56 -05:00
|
|
|
PrevBlockHash []byte
|
|
|
|
Hash []byte
|
2017-08-21 05:50:41 -05:00
|
|
|
Nonce int
|
2017-09-30 23:02:38 -05:00
|
|
|
Height int
|
2017-08-15 02:29:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewBlock creates and returns Block
|
2017-09-30 23:02:38 -05:00
|
|
|
func NewBlock(transactions []*Transaction, prevBlockHash []byte, height int) *Block {
|
|
|
|
block := &Block{time.Now().Unix(), transactions, prevBlockHash, []byte{}, 0, height}
|
2017-08-21 09:06:52 -05:00
|
|
|
pow := NewProofOfWork(block)
|
|
|
|
nonce, hash := pow.Run()
|
|
|
|
|
|
|
|
block.Hash = hash[:]
|
|
|
|
block.Nonce = nonce
|
|
|
|
|
2017-08-15 02:29:52 -05:00
|
|
|
return block
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewGenesisBlock creates and returns genesis Block
|
2017-09-02 21:45:49 -05:00
|
|
|
func NewGenesisBlock(coinbase *Transaction) *Block {
|
2017-09-30 23:02:38 -05:00
|
|
|
return NewBlock([]*Transaction{coinbase}, []byte{}, 0)
|
2017-08-15 02:29:52 -05:00
|
|
|
}
|
2017-08-28 00:11:51 -05:00
|
|
|
|
2017-09-09 22:54:58 -05:00
|
|
|
// HashTransactions returns a hash of the transactions in the block
|
|
|
|
func (b *Block) HashTransactions() []byte {
|
2017-09-18 01:01:43 -05:00
|
|
|
var transactions [][]byte
|
2017-09-09 22:54:58 -05:00
|
|
|
|
|
|
|
for _, tx := range b.Transactions {
|
2017-09-18 01:01:43 -05:00
|
|
|
transactions = append(transactions, tx.Serialize())
|
2017-09-09 22:54:58 -05:00
|
|
|
}
|
2017-09-18 01:01:43 -05:00
|
|
|
mTree := NewMerkleTree(transactions)
|
2017-09-09 22:54:58 -05:00
|
|
|
|
2017-09-18 01:01:43 -05:00
|
|
|
return mTree.RootNode.Data
|
2017-09-09 22:54:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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()
|
|
|
|
}
|
2017-09-10 00:02:46 -05:00
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
2017-10-21 21:49:02 -05:00
|
|
|
|
|
|
|
func (b *Block) PrintHTML(detail bool) string {
|
|
|
|
var lines []string
|
|
|
|
lines = append(lines, fmt.Sprintf("<h2>Block <a href=\"/block/%x\">%x</a> </h2>", b.Hash, b.Hash))
|
|
|
|
lines = append(lines, fmt.Sprintf("Height: %d</br>", b.Height))
|
|
|
|
lines = append(lines, fmt.Sprintf("Prev. block: <a href=\"/block/%x\">%x</a></br>", b.PrevBlockHash, b.PrevBlockHash))
|
|
|
|
lines = append(lines, fmt.Sprintf("Created at : %s</br>", time.Unix(b.Timestamp, 0)))
|
|
|
|
pow := NewProofOfWork(b)
|
|
|
|
lines = append(lines, fmt.Sprintf("PoW: %s</br></br>", strconv.FormatBool(pow.Validate())))
|
|
|
|
if detail {
|
|
|
|
for _, tx := range b.Transactions {
|
|
|
|
lines = append(lines, tx.PrintHTML())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lines = append(lines, fmt.Sprintf("</br></br>"))
|
|
|
|
return strings.Join(lines, "\n")
|
|
|
|
}
|