diff options
author | Sonic <sonic@cobinhood.com> | 2018-10-16 17:01:19 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:23:39 +0800 |
commit | 9cba523a12858576bc2d45fd52c5530b5c1e7de6 (patch) | |
tree | e5c1f14ee7895526c9178c8e1392907da54fa891 /dex/helper_test.go | |
parent | 64d06d63bc37257a01956b637b7e5df7fc2d838d (diff) | |
download | go-tangerine-9cba523a12858576bc2d45fd52c5530b5c1e7de6.tar.gz go-tangerine-9cba523a12858576bc2d45fd52c5530b5c1e7de6.tar.zst go-tangerine-9cba523a12858576bc2d45fd52c5530b5c1e7de6.zip |
dex: implement peerSetLoop
Diffstat (limited to 'dex/helper_test.go')
-rw-r--r-- | dex/helper_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dex/helper_test.go b/dex/helper_test.go index 09d15d42f..5b73c4afa 100644 --- a/dex/helper_test.go +++ b/dex/helper_test.go @@ -183,6 +183,7 @@ func newTestTransaction(from *ecdsa.PrivateKey, nonce uint64, datasize int) *typ // testGovernance is a fake, helper governance for testing purposes type testGovernance struct { numChainsFunc func(uint64) uint32 + lenCRSFunc func() uint64 notarySetFunc func(uint64, uint32) (map[string]struct{}, error) dkgSetFunc func(uint64) (map[string]struct{}, error) } @@ -191,6 +192,10 @@ func (g *testGovernance) GetNumChains(round uint64) uint32 { return g.numChainsFunc(round) } +func (g *testGovernance) LenCRS() uint64 { + return g.lenCRSFunc() +} + func (g *testGovernance) NotarySet( round uint64, chainID uint32) (map[string]struct{}, error) { return g.notarySetFunc(round, chainID) |