2014-02-14 22:56:09 +00:00
|
|
|
package ethchain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
|
|
|
"math/big"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type BlockInfo struct {
|
|
|
|
Number uint64
|
|
|
|
Hash []byte
|
|
|
|
Parent []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bi *BlockInfo) RlpDecode(data []byte) {
|
|
|
|
decoder := ethutil.NewValueFromBytes(data)
|
|
|
|
|
|
|
|
bi.Number = decoder.Get(0).Uint()
|
|
|
|
bi.Hash = decoder.Get(1).Bytes()
|
|
|
|
bi.Parent = decoder.Get(2).Bytes()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bi *BlockInfo) RlpEncode() []byte {
|
|
|
|
return ethutil.Encode([]interface{}{bi.Number, bi.Hash, bi.Parent})
|
|
|
|
}
|
|
|
|
|
|
|
|
type Block struct {
|
|
|
|
// Hash to the previous block
|
|
|
|
PrevHash []byte
|
|
|
|
// Uncles of this block
|
|
|
|
Uncles []*Block
|
|
|
|
UncleSha []byte
|
|
|
|
// The coin base address
|
|
|
|
Coinbase []byte
|
|
|
|
// Block Trie state
|
2014-03-02 19:42:05 +00:00
|
|
|
//state *ethutil.Trie
|
|
|
|
state *State
|
2014-02-14 22:56:09 +00:00
|
|
|
// Difficulty for the current block
|
|
|
|
Difficulty *big.Int
|
|
|
|
// Creation time
|
|
|
|
Time int64
|
|
|
|
// Extra data
|
|
|
|
Extra string
|
|
|
|
// Block Nonce for verification
|
|
|
|
Nonce []byte
|
|
|
|
// List of transactions and/or contracts
|
|
|
|
transactions []*Transaction
|
|
|
|
TxSha []byte
|
2014-02-19 10:35:17 +00:00
|
|
|
|
|
|
|
contractStates map[string]*ethutil.Trie
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// New block takes a raw encoded string
|
|
|
|
// XXX DEPRICATED
|
|
|
|
func NewBlockFromData(raw []byte) *Block {
|
|
|
|
return NewBlockFromBytes(raw)
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewBlockFromBytes(raw []byte) *Block {
|
|
|
|
block := &Block{}
|
|
|
|
block.RlpDecode(raw)
|
|
|
|
|
|
|
|
return block
|
|
|
|
}
|
|
|
|
|
|
|
|
// New block takes a raw encoded string
|
|
|
|
func NewBlockFromRlpValue(rlpValue *ethutil.Value) *Block {
|
|
|
|
block := &Block{}
|
|
|
|
block.RlpValueDecode(rlpValue)
|
|
|
|
|
|
|
|
return block
|
|
|
|
}
|
|
|
|
|
|
|
|
func CreateBlock(root interface{},
|
|
|
|
prevHash []byte,
|
|
|
|
base []byte,
|
|
|
|
Difficulty *big.Int,
|
|
|
|
Nonce []byte,
|
|
|
|
extra string,
|
|
|
|
txes []*Transaction) *Block {
|
|
|
|
|
|
|
|
block := &Block{
|
|
|
|
// Slice of transactions to include in this block
|
2014-02-19 10:35:17 +00:00
|
|
|
transactions: txes,
|
|
|
|
PrevHash: prevHash,
|
|
|
|
Coinbase: base,
|
|
|
|
Difficulty: Difficulty,
|
|
|
|
Nonce: Nonce,
|
|
|
|
Time: time.Now().Unix(),
|
|
|
|
Extra: extra,
|
|
|
|
UncleSha: EmptyShaList,
|
|
|
|
contractStates: make(map[string]*ethutil.Trie),
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
block.SetTransactions(txes)
|
|
|
|
block.SetUncles([]*Block{})
|
|
|
|
|
2014-03-02 19:42:05 +00:00
|
|
|
block.state = NewState(ethutil.NewTrie(ethutil.Config.Db, root))
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
for _, tx := range txes {
|
|
|
|
block.MakeContract(tx)
|
|
|
|
}
|
|
|
|
|
|
|
|
return block
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a hash of the block
|
|
|
|
func (block *Block) Hash() []byte {
|
2014-02-15 00:34:18 +00:00
|
|
|
return ethutil.Sha3Bin(block.Value().Encode())
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) HashNoNonce() []byte {
|
2014-03-02 19:42:05 +00:00
|
|
|
return ethutil.Sha3Bin(ethutil.Encode([]interface{}{block.PrevHash, block.UncleSha, block.Coinbase, block.state.trie.Root, block.TxSha, block.Difficulty, block.Time, block.Extra}))
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) PrintHash() {
|
|
|
|
fmt.Println(block)
|
2014-03-02 19:42:05 +00:00
|
|
|
fmt.Println(ethutil.NewValue(ethutil.Encode([]interface{}{block.PrevHash, block.UncleSha, block.Coinbase, block.state.trie.Root, block.TxSha, block.Difficulty, block.Time, block.Extra, block.Nonce})))
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-03-02 19:42:05 +00:00
|
|
|
func (block *Block) State() *State {
|
2014-02-14 22:56:09 +00:00
|
|
|
return block.state
|
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) Transactions() []*Transaction {
|
|
|
|
return block.transactions
|
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) PayFee(addr []byte, fee *big.Int) bool {
|
2014-03-02 19:42:05 +00:00
|
|
|
contract := block.state.GetContract(addr)
|
2014-02-14 22:56:09 +00:00
|
|
|
// If we can't pay the fee return
|
|
|
|
if contract == nil || contract.Amount.Cmp(fee) < 0 /* amount < fee */ {
|
|
|
|
fmt.Println("Contract has insufficient funds", contract.Amount, fee)
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
base := new(big.Int)
|
|
|
|
contract.Amount = base.Sub(contract.Amount, fee)
|
2014-03-02 19:42:05 +00:00
|
|
|
block.state.trie.Update(string(addr), string(contract.RlpEncode()))
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-03-02 19:42:05 +00:00
|
|
|
data := block.state.trie.Get(string(block.Coinbase))
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
// Get the ether (Coinbase) and add the fee (gief fee to miner)
|
2014-03-20 22:17:53 +00:00
|
|
|
ether := NewAccountFromData(block.Coinbase, []byte(data))
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
base = new(big.Int)
|
|
|
|
ether.Amount = base.Add(ether.Amount, fee)
|
|
|
|
|
2014-03-02 19:42:05 +00:00
|
|
|
block.state.trie.Update(string(block.Coinbase), string(ether.RlpEncode()))
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) BlockInfo() BlockInfo {
|
|
|
|
bi := BlockInfo{}
|
|
|
|
data, _ := ethutil.Config.Db.Get(append(block.Hash(), []byte("Info")...))
|
|
|
|
bi.RlpDecode(data)
|
|
|
|
|
|
|
|
return bi
|
|
|
|
}
|
|
|
|
|
2014-02-19 10:35:17 +00:00
|
|
|
// Sync the block's state and contract respectively
|
|
|
|
func (block *Block) Sync() {
|
2014-03-03 10:03:16 +00:00
|
|
|
block.state.Sync()
|
2014-02-19 10:35:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) Undo() {
|
|
|
|
// Sync the block state itself
|
2014-03-02 19:42:05 +00:00
|
|
|
block.state.Reset()
|
2014-02-19 10:35:17 +00:00
|
|
|
}
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
func (block *Block) MakeContract(tx *Transaction) {
|
2014-03-02 19:42:05 +00:00
|
|
|
contract := MakeContract(tx, block.state)
|
2014-02-24 12:15:34 +00:00
|
|
|
if contract != nil {
|
2014-03-03 10:03:16 +00:00
|
|
|
block.state.states[string(tx.Hash()[12:])] = contract.state
|
2014-02-24 12:15:34 +00:00
|
|
|
}
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/////// Block Encoding
|
|
|
|
func (block *Block) encodedUncles() interface{} {
|
|
|
|
uncles := make([]interface{}, len(block.Uncles))
|
|
|
|
for i, uncle := range block.Uncles {
|
|
|
|
uncles[i] = uncle.RlpEncode()
|
|
|
|
}
|
|
|
|
|
|
|
|
return uncles
|
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) encodedTxs() interface{} {
|
|
|
|
// Marshal the transactions of this block
|
|
|
|
encTx := make([]interface{}, len(block.transactions))
|
|
|
|
for i, tx := range block.transactions {
|
|
|
|
// Cast it to a string (safe)
|
|
|
|
encTx[i] = tx.RlpData()
|
|
|
|
}
|
|
|
|
|
|
|
|
return encTx
|
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) rlpTxs() interface{} {
|
|
|
|
// Marshal the transactions of this block
|
|
|
|
encTx := make([]interface{}, len(block.transactions))
|
|
|
|
for i, tx := range block.transactions {
|
|
|
|
// Cast it to a string (safe)
|
|
|
|
encTx[i] = tx.RlpData()
|
|
|
|
}
|
|
|
|
|
|
|
|
return encTx
|
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) rlpUncles() interface{} {
|
|
|
|
// Marshal the transactions of this block
|
|
|
|
uncles := make([]interface{}, len(block.Uncles))
|
|
|
|
for i, uncle := range block.Uncles {
|
|
|
|
// Cast it to a string (safe)
|
|
|
|
uncles[i] = uncle.header()
|
|
|
|
}
|
|
|
|
|
|
|
|
return uncles
|
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) SetUncles(uncles []*Block) {
|
|
|
|
block.Uncles = uncles
|
|
|
|
|
|
|
|
// Sha of the concatenated uncles
|
|
|
|
block.UncleSha = ethutil.Sha3Bin(ethutil.Encode(block.rlpUncles()))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) SetTransactions(txs []*Transaction) {
|
|
|
|
block.transactions = txs
|
|
|
|
|
|
|
|
block.TxSha = ethutil.Sha3Bin(ethutil.Encode(block.rlpTxs()))
|
|
|
|
}
|
|
|
|
|
2014-02-15 00:34:18 +00:00
|
|
|
func (block *Block) Value() *ethutil.Value {
|
|
|
|
return ethutil.NewValue([]interface{}{block.header(), block.rlpTxs(), block.rlpUncles()})
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) RlpEncode() []byte {
|
|
|
|
// Encode a slice interface which contains the header and the list of
|
|
|
|
// transactions.
|
2014-02-15 00:34:18 +00:00
|
|
|
return block.Value().Encode()
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) RlpDecode(data []byte) {
|
|
|
|
rlpValue := ethutil.NewValueFromBytes(data)
|
|
|
|
block.RlpValueDecode(rlpValue)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) RlpValueDecode(decoder *ethutil.Value) {
|
|
|
|
header := decoder.Get(0)
|
|
|
|
|
|
|
|
block.PrevHash = header.Get(0).Bytes()
|
|
|
|
block.UncleSha = header.Get(1).Bytes()
|
|
|
|
block.Coinbase = header.Get(2).Bytes()
|
2014-03-02 19:42:05 +00:00
|
|
|
block.state = NewState(ethutil.NewTrie(ethutil.Config.Db, header.Get(3).Val))
|
2014-02-14 22:56:09 +00:00
|
|
|
block.TxSha = header.Get(4).Bytes()
|
|
|
|
block.Difficulty = header.Get(5).BigInt()
|
|
|
|
block.Time = int64(header.Get(6).BigInt().Uint64())
|
|
|
|
block.Extra = header.Get(7).Str()
|
|
|
|
block.Nonce = header.Get(8).Bytes()
|
2014-02-19 10:35:17 +00:00
|
|
|
block.contractStates = make(map[string]*ethutil.Trie)
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
// Tx list might be empty if this is an uncle. Uncles only have their
|
|
|
|
// header set.
|
|
|
|
if decoder.Get(1).IsNil() == false { // Yes explicitness
|
|
|
|
txes := decoder.Get(1)
|
|
|
|
block.transactions = make([]*Transaction, txes.Len())
|
|
|
|
for i := 0; i < txes.Len(); i++ {
|
|
|
|
tx := NewTransactionFromValue(txes.Get(i))
|
|
|
|
|
|
|
|
block.transactions[i] = tx
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if decoder.Get(2).IsNil() == false { // Yes explicitness
|
|
|
|
uncles := decoder.Get(2)
|
|
|
|
block.Uncles = make([]*Block, uncles.Len())
|
|
|
|
for i := 0; i < uncles.Len(); i++ {
|
|
|
|
block.Uncles[i] = NewUncleBlockFromValue(uncles.Get(i))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewUncleBlockFromValue(header *ethutil.Value) *Block {
|
|
|
|
block := &Block{}
|
|
|
|
|
|
|
|
block.PrevHash = header.Get(0).Bytes()
|
|
|
|
block.UncleSha = header.Get(1).Bytes()
|
|
|
|
block.Coinbase = header.Get(2).Bytes()
|
2014-03-02 19:42:05 +00:00
|
|
|
block.state = NewState(ethutil.NewTrie(ethutil.Config.Db, header.Get(3).Val))
|
2014-02-14 22:56:09 +00:00
|
|
|
block.TxSha = header.Get(4).Bytes()
|
|
|
|
block.Difficulty = header.Get(5).BigInt()
|
|
|
|
block.Time = int64(header.Get(6).BigInt().Uint64())
|
|
|
|
block.Extra = header.Get(7).Str()
|
|
|
|
block.Nonce = header.Get(8).Bytes()
|
|
|
|
|
|
|
|
return block
|
|
|
|
}
|
|
|
|
|
|
|
|
func (block *Block) String() string {
|
2014-03-02 19:42:05 +00:00
|
|
|
return fmt.Sprintf("Block(%x):\nPrevHash:%x\nUncleSha:%x\nCoinbase:%x\nRoot:%x\nTxSha:%x\nDiff:%v\nTime:%d\nNonce:%x\nTxs:%d\n", block.Hash(), block.PrevHash, block.UncleSha, block.Coinbase, block.state.trie.Root, block.TxSha, block.Difficulty, block.Time, block.Nonce, len(block.transactions))
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
2014-03-20 10:20:29 +00:00
|
|
|
func (block *Block) GetRoot() interface{} {
|
|
|
|
return block.state.trie.Root
|
|
|
|
}
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
//////////// UNEXPORTED /////////////////
|
|
|
|
func (block *Block) header() []interface{} {
|
|
|
|
return []interface{}{
|
|
|
|
// Sha of the previous block
|
|
|
|
block.PrevHash,
|
|
|
|
// Sha of uncles
|
|
|
|
block.UncleSha,
|
|
|
|
// Coinbase address
|
|
|
|
block.Coinbase,
|
|
|
|
// root state
|
2014-03-02 19:42:05 +00:00
|
|
|
block.state.trie.Root,
|
2014-02-14 22:56:09 +00:00
|
|
|
// Sha of tx
|
|
|
|
block.TxSha,
|
|
|
|
// Current block Difficulty
|
|
|
|
block.Difficulty,
|
|
|
|
// Time the block was found?
|
|
|
|
block.Time,
|
|
|
|
// Extra data
|
|
|
|
block.Extra,
|
|
|
|
// Block's Nonce for validation
|
|
|
|
block.Nonce,
|
|
|
|
}
|
|
|
|
}
|