Merge branch 'hotfix/1'

This commit is contained in:
obscuren 2014-05-20 19:20:04 +02:00
commit e837c9ab3f
2 changed files with 5 additions and 2 deletions

View File

@ -99,6 +99,9 @@ func CreateBlock(root interface{},
Time: time.Now().Unix(),
Extra: extra,
UncleSha: EmptyShaList,
GasUsed: new(big.Int),
MinGasPrice: new(big.Int),
GasLimit: new(big.Int),
contractStates: make(map[string]*ethutil.Trie),
}
block.SetTransactions(txes)
@ -220,7 +223,7 @@ func (block *Block) SetTransactions(txs []*Transaction) {
trie.Update(strconv.Itoa(i), string(tx.RlpEncode()))
}
block.TxSha = trie.Root.([]byte)
block.TxSha = []byte(trie.Root.(string))
}
func (block *Block) Value() *ethutil.Value {

View File

@ -18,7 +18,7 @@ const (
// The size of the output buffer for writing messages
outputBufferSize = 50
// Current protocol version
ProtocolVersion = 10
ProtocolVersion = 11
)
type DiscReason byte