From 2e2860e4df4500d1e801c9753ea71014738b83d3 Mon Sep 17 00:00:00 2001 From: obscuren Date: Wed, 8 Apr 2015 22:17:49 +0200 Subject: Make sure mist runs ... :-) --- xeth/types.go | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/xeth/types.go b/xeth/types.go index 3f96f8f8b..739092474 100644 --- a/xeth/types.go +++ b/xeth/types.go @@ -77,15 +77,19 @@ func NewBlock(block *types.Block) *Block { } ptxs := make([]*Transaction, len(block.Transactions())) - for i, tx := range block.Transactions() { - ptxs[i] = NewTx(tx) - } + /* + for i, tx := range block.Transactions() { + ptxs[i] = NewTx(tx) + } + */ txlist := common.NewList(ptxs) puncles := make([]*Block, len(block.Uncles())) - for i, uncle := range block.Uncles() { - puncles[i] = NewBlock(types.NewBlockWithHeader(uncle)) - } + /* + for i, uncle := range block.Uncles() { + puncles[i] = NewBlock(types.NewBlockWithHeader(uncle)) + } + */ ulist := common.NewList(puncles) return &Block{ -- cgit v1.2.3