diff options
author | Mission Liao <mission.liao@dexon.org> | 2019-01-24 11:16:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-24 11:16:48 +0800 |
commit | 779f63a9f6fc3f4c628f0b97c822546ac51d0eb6 (patch) | |
tree | aa25f260483e8c9430686cb10eba87d286072830 /core/test/stopper_test.go | |
parent | 0e6dc8b38f7df249831aebd4928ec42b827038e3 (diff) | |
download | dexon-consensus-779f63a9f6fc3f4c628f0b97c822546ac51d0eb6.tar.gz dexon-consensus-779f63a9f6fc3f4c628f0b97c822546ac51d0eb6.tar.zst dexon-consensus-779f63a9f6fc3f4c628f0b97c822546ac51d0eb6.zip |
core: remove Governance.NotifyRoundHeight (#431)
Diffstat (limited to 'core/test/stopper_test.go')
-rw-r--r-- | core/test/stopper_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/test/stopper_test.go b/core/test/stopper_test.go index d296727..758a0e4 100644 --- a/core/test/stopper_test.go +++ b/core/test/stopper_test.go @@ -70,7 +70,7 @@ func (s *StopperTestSuite) TestStopByConfirmedBlocks() { nodes = GenerateRandomNodeIDs(2) ) for _, nID := range nodes { - apps[nID] = NewApp(nil) + apps[nID] = NewApp(0, nil) dbInst, err := db.NewMemBackedDB() req.NoError(err) dbInsts[nID] = dbInst @@ -118,7 +118,7 @@ func (s *StopperTestSuite) TestStopByRound() { nodes = GenerateRandomNodeIDs(2) ) for _, nID := range nodes { - apps[nID] = NewApp(nil) + apps[nID] = NewApp(0, nil) dbInst, err := db.NewMemBackedDB() req.NoError(err) dbInsts[nID] = dbInst |