diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-10-18 09:46:56 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | cf3c29bd89848492440a0010f6aa6ee79f3f149c (patch) | |
tree | 991a959876b820c97fc50d91710e5741a17c84b8 /dex/backend.go | |
parent | 8dd647934c2836bd3a1b6a5ba197bfd4f886b720 (diff) | |
download | dexon-cf3c29bd89848492440a0010f6aa6ee79f3f149c.tar.gz dexon-cf3c29bd89848492440a0010f6aa6ee79f3f149c.tar.zst dexon-cf3c29bd89848492440a0010f6aa6ee79f3f149c.zip |
dex: add initial block to Run
Diffstat (limited to 'dex/backend.go')
-rw-r--r-- | dex/backend.go | 4 |
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 } |