diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-29 09:31:36 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | b88f16666309f617028c79d8aaed6e39b4ebda34 (patch) | |
tree | a4f290d36a5639074d3379aa221d49d523abc865 /dex | |
parent | 2551387414a60f2c69aa1b2fe3a7ea08a8b7fe4c (diff) | |
download | dexon-b88f16666309f617028c79d8aaed6e39b4ebda34.tar dexon-b88f16666309f617028c79d8aaed6e39b4ebda34.tar.gz dexon-b88f16666309f617028c79d8aaed6e39b4ebda34.tar.bz2 dexon-b88f16666309f617028c79d8aaed6e39b4ebda34.tar.lz dexon-b88f16666309f617028c79d8aaed6e39b4ebda34.tar.xz dexon-b88f16666309f617028c79d8aaed6e39b4ebda34.tar.zst dexon-b88f16666309f617028c79d8aaed6e39b4ebda34.zip |
vendor: sync consensus core and fix conflict
Diffstat (limited to 'dex')
-rw-r--r-- | dex/network.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dex/network.go b/dex/network.go index 0d45973ec..cb22340f3 100644 --- a/dex/network.go +++ b/dex/network.go @@ -1,6 +1,7 @@ package dex import ( + coreCommon "github.com/dexon-foundation/dexon-consensus-core/common" "github.com/dexon-foundation/dexon-consensus-core/core/crypto" "github.com/dexon-foundation/dexon-consensus-core/core/types" dkgTypes "github.com/dexon-foundation/dexon-consensus-core/core/types/dkg" @@ -14,6 +15,10 @@ func NewDexconNetwork(pm *ProtocolManager) *DexconNetwork { return &DexconNetwork{pm: pm} } +// PullBlocks tries to pull blocks from the DEXON network. +func (n *DexconNetwork) PullBlocks(hashes coreCommon.Hashes) { +} + // BroadcastVote broadcasts vote to all nodes in DEXON network. func (n *DexconNetwork) BroadcastVote(vote *types.Vote) { n.pm.BroadcastVote(vote) |