aboutsummaryrefslogtreecommitdiffstats
path: root/dex
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-10-18 09:46:56 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:49:53 +0800
commit96cbe2f0f1cbfb44649178b32fba8bd4d0859747 (patch)
treef0040e50a9a828107f55250415ea2a004b03d639 /dex
parent5b10664bfa60ca0787a92290ea2fba45e7f6f282 (diff)
downloaddexon-96cbe2f0f1cbfb44649178b32fba8bd4d0859747.tar
dexon-96cbe2f0f1cbfb44649178b32fba8bd4d0859747.tar.gz
dexon-96cbe2f0f1cbfb44649178b32fba8bd4d0859747.tar.bz2
dexon-96cbe2f0f1cbfb44649178b32fba8bd4d0859747.tar.lz
dexon-96cbe2f0f1cbfb44649178b32fba8bd4d0859747.tar.xz
dexon-96cbe2f0f1cbfb44649178b32fba8bd4d0859747.tar.zst
dexon-96cbe2f0f1cbfb44649178b32fba8bd4d0859747.zip
dex: add initial block to Run
Diffstat (limited to 'dex')
-rw-r--r--dex/backend.go4
1 files changed, 3 insertions, 1 deletions
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
}