aboutsummaryrefslogtreecommitdiffstats
path: root/dex
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-25 18:35:25 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:49:55 +0800
commitaa280a17889fe70107466520ffe01ec78473a836 (patch)
tree93b2603065ac6e0d88cc1f0015827aea8393fc20 /dex
parent459beb82e677a8489a49a3a141e405a1cb9d1087 (diff)
downloaddexon-aa280a17889fe70107466520ffe01ec78473a836.tar
dexon-aa280a17889fe70107466520ffe01ec78473a836.tar.gz
dexon-aa280a17889fe70107466520ffe01ec78473a836.tar.bz2
dexon-aa280a17889fe70107466520ffe01ec78473a836.tar.lz
dexon-aa280a17889fe70107466520ffe01ec78473a836.tar.xz
dexon-aa280a17889fe70107466520ffe01ec78473a836.tar.zst
dexon-aa280a17889fe70107466520ffe01ec78473a836.zip
dex: remove uneeded info from block header
Diffstat (limited to 'dex')
-rw-r--r--dex/app.go20
1 files changed, 5 insertions, 15 deletions
diff --git a/dex/app.go b/dex/app.go
index b1558b46f..5193fdfb8 100644
--- a/dex/app.go
+++ b/dex/app.go
@@ -464,13 +464,6 @@ func (d *DexconApp) BlockDelivered(blockHash coreCommon.Hash, result coreTypes.F
panic(err)
}
- var witnessData witnessData
- err = rlp.Decode(bytes.NewReader(block.Witness.Data), &witnessData)
- if err != nil {
- log.Error("Witness rlp decode failed", "error", err)
- panic(err)
- }
-
block.Payload = nil
dexconMeta, err := rlp.EncodeToBytes(block)
if err != nil {
@@ -478,21 +471,18 @@ func (d *DexconApp) BlockDelivered(blockHash coreCommon.Hash, result coreTypes.F
}
newBlock := types.NewBlock(&types.Header{
- Number: new(big.Int).SetUint64(result.Height),
- Time: big.NewInt(result.Timestamp.Unix()),
- Coinbase: common.BytesToAddress(block.ProposerID.Bytes()),
- Position: block.Position,
- WitnessHeight: block.Witness.Height,
- WitnessRoot: witnessData.Root,
- WitnessReceiptHash: witnessData.ReceiptHash,
+ Number: new(big.Int).SetUint64(result.Height),
+ Time: big.NewInt(result.Timestamp.Unix()),
+ Coinbase: common.BytesToAddress(block.ProposerID.Bytes()),
// TODO(bojie): fix it
GasLimit: 8000000,
Difficulty: big.NewInt(1),
+ Round: block.Position.Round,
DexconMeta: dexconMeta,
Randomness: result.Randomness,
}, transactions, nil, nil)
- _, err = d.blockchain.ProcessPendingBlock(newBlock)
+ _, err = d.blockchain.ProcessPendingBlock(newBlock, &block.Witness)
if err != nil {
log.Error("Insert chain", "error", err)
panic(err)