From 10d91a9940fa5671af63aa03f3aa0bfacad61b41 Mon Sep 17 00:00:00 2001 From: Wei-Ning Huang Date: Fri, 21 Sep 2018 15:06:38 +0800 Subject: dex: make geth buildable and update interface skeleton --- dex/network.go | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 dex/network.go (limited to 'dex/network.go') diff --git a/dex/network.go b/dex/network.go new file mode 100644 index 000000000..d0b8b5d77 --- /dev/null +++ b/dex/network.go @@ -0,0 +1,35 @@ +package dex + +import "github.com/dexon-foundation/dexon-consensus-core/core/types" + +type DexconNetwork struct { + receiveChan chan interface{} +} + +func NewDexconNetwork() *DexconNetwork { + return &DexconNetwork{ + receiveChan: make(chan interface{}), + } +} + +// BroadcastVote broadcasts vote to all nodes in DEXON network. +func (n *DexconNetwork) BroadcastVote(vote *types.Vote) { +} + +// BroadcastBlock broadcasts block to all nodes in DEXON network. +func (n *DexconNetwork) BroadcastBlock(block *types.Block) { +} + +// BroadcastWitnessAck broadcasts witnessAck to all nodes in DEXON network. +func (n *DexconNetwork) BroadcastWitnessAck(witnessAck *types.WitnessAck) { +} + +// SendDKGPrivateShare sends PrivateShare to a DKG participant. +func (n *DexconNetwork) SendDKGPrivateShare( + recv types.NodeID, prvShare *types.DKGPrivateShare) { +} + +// ReceiveChan returns a channel to receive messages from DEXON network. +func (n *DexconNetwork) ReceiveChan() <-chan interface{} { + return n.receiveChan +} -- cgit v1.2.3