diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-12-06 13:36:20 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:19 +0800 |
commit | 421dd70b4c9e5c468646d27a62749ef9e6a8ebc7 (patch) | |
tree | bc91f4088f3215122a3969c621f1308ab0e2a698 /dex | |
parent | f85ac9ff86438420e51b75cafc7175f957a22f9a (diff) | |
download | go-tangerine-421dd70b4c9e5c468646d27a62749ef9e6a8ebc7.tar go-tangerine-421dd70b4c9e5c468646d27a62749ef9e6a8ebc7.tar.gz go-tangerine-421dd70b4c9e5c468646d27a62749ef9e6a8ebc7.tar.bz2 go-tangerine-421dd70b4c9e5c468646d27a62749ef9e6a8ebc7.tar.lz go-tangerine-421dd70b4c9e5c468646d27a62749ef9e6a8ebc7.tar.xz go-tangerine-421dd70b4c9e5c468646d27a62749ef9e6a8ebc7.tar.zst go-tangerine-421dd70b4c9e5c468646d27a62749ef9e6a8ebc7.zip |
vendor: sync to latest core and fix conflict (#79)
Diffstat (limited to 'dex')
-rw-r--r-- | dex/backend.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dex/backend.go b/dex/backend.go index 4e7def8e4..8153dc2ed 100644 --- a/dex/backend.go +++ b/dex/backend.go @@ -23,7 +23,6 @@ import ( dexCore "github.com/dexon-foundation/dexon-consensus/core" coreEcdsa "github.com/dexon-foundation/dexon-consensus/core/crypto/ecdsa" - coreTypes "github.com/dexon-foundation/dexon-consensus/core/types" "github.com/dexon-foundation/dexon/accounts" "github.com/dexon-foundation/dexon/consensus" @@ -251,7 +250,7 @@ func (s *Dexon) Stop() error { func (s *Dexon) StartProposing() error { // TODO: Run with the latest confirmed block in compaction chain. - s.consensus.Run(&coreTypes.Block{}) + s.consensus.Run() return nil } |