aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-21 01:20:04 +0800
committerobscuren <geffobscura@gmail.com>2014-05-21 01:20:04 +0800
commite837c9ab3fc94979dd79df9b70a3e7fda74263b9 (patch)
treeec5266983176f6583c8bb08d51467efeb9dd175a
parent4b13f93a3e0f2901a8e1aa38dfef115e24c63ef0 (diff)
parentad51c85e5d67ca2e64e95786e79d062c4467b4c1 (diff)
downloaddexon-e837c9ab3fc94979dd79df9b70a3e7fda74263b9.tar.gz
dexon-e837c9ab3fc94979dd79df9b70a3e7fda74263b9.tar.zst
dexon-e837c9ab3fc94979dd79df9b70a3e7fda74263b9.zip
Merge branch 'hotfix/1'
-rw-r--r--ethchain/block.go5
-rw-r--r--peer.go2
2 files changed, 5 insertions, 2 deletions
diff --git a/ethchain/block.go b/ethchain/block.go
index c6c2c1226..bdb243286 100644
--- a/ethchain/block.go
+++ b/ethchain/block.go
@@ -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 {
diff --git a/peer.go b/peer.go
index 993f48d20..b2e751b44 100644
--- a/peer.go
+++ b/peer.go
@@ -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