diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-03-19 16:53:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-19 16:53:34 +0800 |
commit | 448935829700500ecf512b9e0a6437cbb63504b3 (patch) | |
tree | 6a9eb7439f2e8caf60000a14215ce92cd078a518 /core/test/app_test.go | |
parent | 3785190d9154acb0492dd22b6d62e953a0bcf453 (diff) | |
download | tangerine-consensus-448935829700500ecf512b9e0a6437cbb63504b3.tar.gz tangerine-consensus-448935829700500ecf512b9e0a6437cbb63504b3.tar.zst tangerine-consensus-448935829700500ecf512b9e0a6437cbb63504b3.zip |
core: remove round from addDKG fuction (#501)
Diffstat (limited to 'core/test/app_test.go')
-rw-r--r-- | core/test/app_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/test/app_test.go b/core/test/app_test.go index 1579549..c83aaf6 100644 --- a/core/test/app_test.go +++ b/core/test/app_test.go @@ -85,7 +85,7 @@ func (s *AppTestSuite) proposeMPK( PublicKeyShares: *pubShare, } s.Require().NoError(s.signers[idx].SignDKGMasterPublicKey(mpk)) - gov.AddDKGMasterPublicKey(round, mpk) + gov.AddDKGMasterPublicKey(mpk) } } @@ -100,7 +100,7 @@ func (s *AppTestSuite) proposeFinalize( Reset: reset, } s.Require().NoError(s.signers[idx].SignDKGFinalize(final)) - gov.AddDKGFinalize(round, final) + gov.AddDKGFinalize(final) } } |