From 12eb896a11eaf15712339ffa7eedf2b7c88fdfdd Mon Sep 17 00:00:00 2001 From: Jimmy Hu Date: Thu, 18 Oct 2018 09:46:56 +0800 Subject: dex: add initial block to Run --- dex/backend.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dex/backend.go b/dex/backend.go index ecc8ace2d..7a23ba80b 100644 --- a/dex/backend.go +++ b/dex/backend.go @@ -25,6 +25,7 @@ import ( dexCore "github.com/dexon-foundation/dexon-consensus-core/core" "github.com/dexon-foundation/dexon-consensus-core/core/blockdb" coreEcdsa "github.com/dexon-foundation/dexon-consensus-core/core/crypto/ecdsa" + coreTypes "github.com/dexon-foundation/dexon-consensus-core/core/types" "github.com/dexon-foundation/dexon/accounts" "github.com/dexon-foundation/dexon/consensus" @@ -238,7 +239,8 @@ func (s *Dexon) Start(srvr *p2p.Server) error { go func() { time.Sleep(10 * time.Second) - s.consensus.Run() + // TODO: Run with the latest confirmed block in compaction chain. + s.consensus.Run(&coreTypes.Block{}) }() return nil } -- cgit v1.2.3