aboutsummaryrefslogtreecommitdiffstats
path: root/consensus
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2019-04-01 18:01:26 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:50:05 +0800
commit01cb9a0211a1197aaf9ef8b9f82a1ebd935fd04c (patch)
tree44bead198964ac9462de3c410a2947e33faff075 /consensus
parent64ed8e60eebe4dc9afdc3c9564ff8a9e67d71f65 (diff)
downloaddexon-01cb9a0211a1197aaf9ef8b9f82a1ebd935fd04c.tar
dexon-01cb9a0211a1197aaf9ef8b9f82a1ebd935fd04c.tar.gz
dexon-01cb9a0211a1197aaf9ef8b9f82a1ebd935fd04c.tar.bz2
dexon-01cb9a0211a1197aaf9ef8b9f82a1ebd935fd04c.tar.lz
dexon-01cb9a0211a1197aaf9ef8b9f82a1ebd935fd04c.tar.xz
dexon-01cb9a0211a1197aaf9ef8b9f82a1ebd935fd04c.tar.zst
dexon-01cb9a0211a1197aaf9ef8b9f82a1ebd935fd04c.zip
vendor: sync to latest core (#320)
* vendor: sync to latest core * dex, core: fix conflict x
Diffstat (limited to 'consensus')
-rw-r--r--consensus/dexcon/fake_dexcon.go10
1 files changed, 1 insertions, 9 deletions
diff --git a/consensus/dexcon/fake_dexcon.go b/consensus/dexcon/fake_dexcon.go
index ae7bed90e..430d9bc6b 100644
--- a/consensus/dexcon/fake_dexcon.go
+++ b/consensus/dexcon/fake_dexcon.go
@@ -3,7 +3,6 @@ package dexcon
import (
"crypto/ecdsa"
"math/big"
- "time"
coreCommon "github.com/dexon-foundation/dexon-consensus/common"
dexCore "github.com/dexon-foundation/dexon-consensus/core"
@@ -54,15 +53,8 @@ func (f *FakeDexcon) Prepare(chain consensus.ChainReader, header *types.Header)
}
}
- parentCoreBlockHash, err := coreUtils.HashBlock(&parentCoreBlock)
- if err != nil {
- return err
- }
randomness := f.nodes.Randomness(header.Round, common.Hash(blockHash))
- coreBlock.Finalization.ParentHash = parentCoreBlockHash
- coreBlock.Finalization.Randomness = randomness
- coreBlock.Finalization.Timestamp = time.Now().UTC()
- coreBlock.Finalization.Height = parentHeader.Number.Uint64()
+ coreBlock.Randomness = randomness
dexconMeta, err := rlp.EncodeToBytes(&coreBlock)
if err != nil {