blockchain_go/block.go

38 lines
806 B
Go
Raw Permalink Normal View History

package main
import (
2017-08-16 01:07:30 -05:00
"bytes"
"crypto/sha256"
"strconv"
"time"
)
// Block keeps block headers
type Block struct {
Timestamp int64
Data []byte
PrevBlockHash []byte
Hash []byte
}
// SetHash calculates and sets block hash
func (b *Block) SetHash() {
timestamp := []byte(strconv.FormatInt(b.Timestamp, 10))
headers := bytes.Join([][]byte{b.PrevBlockHash, b.Data, timestamp}, []byte{})
2017-08-16 01:07:30 -05:00
hash := sha256.Sum256(headers)
2017-08-16 01:07:30 -05:00
b.Hash = hash[:]
}
// NewBlock creates and returns Block
2017-08-17 01:06:42 -05:00
func NewBlock(data string, prevBlockHash []byte) *Block {
block := &Block{time.Now().Unix(), []byte(data), prevBlockHash, []byte{}}
block.SetHash()
return block
}
// NewGenesisBlock creates and returns genesis Block
func NewGenesisBlock() *Block {
return NewBlock("Genesis Block", []byte{})
}