aboutsummaryrefslogtreecommitdiffstats
path: root/dex/peer_test.go
diff options
context:
space:
mode:
authorSonic <sonic@cobinhood.com>2018-10-14 22:39:11 +0800
committerWei-Ning Huang <w@dexon.org>2019-03-12 12:19:09 +0800
commit47f5134d1d45538b95dfc45913a83bab594d3ca5 (patch)
treec49a0ede8b012cb6c9fed2a7d34dc49b229adc28 /dex/peer_test.go
parentb0c906ba404b55147b5e3a085b6a4c3906524a1d (diff)
downloaddexon-47f5134d1d45538b95dfc45913a83bab594d3ca5.tar
dexon-47f5134d1d45538b95dfc45913a83bab594d3ca5.tar.gz
dexon-47f5134d1d45538b95dfc45913a83bab594d3ca5.tar.bz2
dexon-47f5134d1d45538b95dfc45913a83bab594d3ca5.tar.lz
dexon-47f5134d1d45538b95dfc45913a83bab594d3ca5.tar.xz
dexon-47f5134d1d45538b95dfc45913a83bab594d3ca5.tar.zst
dexon-47f5134d1d45538b95dfc45913a83bab594d3ca5.zip
dex: add method to get NumChains, NotarySet, DKGSet easily
Diffstat (limited to 'dex/peer_test.go')
-rw-r--r--dex/peer_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/dex/peer_test.go b/dex/peer_test.go
index 6e539e078..d0262e201 100644
--- a/dex/peer_test.go
+++ b/dex/peer_test.go
@@ -16,7 +16,7 @@ func TestPeerSetBuildAndForgetNotaryConn(t *testing.T) {
table := newNodeTable()
gov := &testGovernance{
- getChainNumFunc: func(uint64) uint32 {
+ numChainsFunc: func(uint64) uint32 {
return 3
},
}
@@ -37,7 +37,7 @@ func TestPeerSetBuildAndForgetNotaryConn(t *testing.T) {
[]enode.ID{nodeID(0), nodeID(2), nodeID(6)},
}
- gov.getNotarySetFunc = func(cid uint32, round uint64) map[string]struct{} {
+ gov.notarySetFunc = func(cid uint32, round uint64) map[string]struct{} {
m := map[uint64][][]enode.ID{
10: round10,
11: round11,
@@ -317,7 +317,7 @@ func TestPeerSetBuildDKGConn(t *testing.T) {
gov := &testGovernance{}
- gov.getDKGSetFunc = func(round uint64) map[string]struct{} {
+ gov.dkgSetFunc = func(round uint64) map[string]struct{} {
m := map[uint64][]enode.ID{
10: []enode.ID{nodeID(0), nodeID(1), nodeID(2)},
11: []enode.ID{nodeID(1), nodeID(2), nodeID(5)},