aboutsummaryrefslogtreecommitdiffstats
path: root/dex/network.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@cobinhood.com>2018-09-21 15:06:38 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:48 +0800
commit4746deb69870907f9a18282b965ced372d1c0e98 (patch)
tree49e79ad34b315e3df8bb7555b4606e7c3e6240a5 /dex/network.go
parentf60070586cf462c2cf2de91911e5b34c8287da51 (diff)
downloaddexon-4746deb69870907f9a18282b965ced372d1c0e98.tar
dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar.gz
dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar.bz2
dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar.lz
dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar.xz
dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar.zst
dexon-4746deb69870907f9a18282b965ced372d1c0e98.zip
dex: make geth buildable and update interface skeleton
Diffstat (limited to 'dex/network.go')
-rw-r--r--dex/network.go35
1 files changed, 35 insertions, 0 deletions
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
+}