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 /integration_test | |
parent | 3785190d9154acb0492dd22b6d62e953a0bcf453 (diff) | |
download | dexon-consensus-448935829700500ecf512b9e0a6437cbb63504b3.tar dexon-consensus-448935829700500ecf512b9e0a6437cbb63504b3.tar.gz dexon-consensus-448935829700500ecf512b9e0a6437cbb63504b3.tar.bz2 dexon-consensus-448935829700500ecf512b9e0a6437cbb63504b3.tar.lz dexon-consensus-448935829700500ecf512b9e0a6437cbb63504b3.tar.xz dexon-consensus-448935829700500ecf512b9e0a6437cbb63504b3.tar.zst dexon-consensus-448935829700500ecf512b9e0a6437cbb63504b3.zip |
core: remove round from addDKG fuction (#501)
Diffstat (limited to 'integration_test')
-rw-r--r-- | integration_test/round-event_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integration_test/round-event_test.go b/integration_test/round-event_test.go index 9bdce7a..d5b432b 100644 --- a/integration_test/round-event_test.go +++ b/integration_test/round-event_test.go @@ -85,7 +85,7 @@ func (s *RoundEventTestSuite) proposeMPK( PublicKeyShares: *pubShare, } s.Require().NoError(s.signers[idx].SignDKGMasterPublicKey(mpk)) - gov.AddDKGMasterPublicKey(round, mpk) + gov.AddDKGMasterPublicKey(mpk) } } @@ -100,7 +100,7 @@ func (s *RoundEventTestSuite) proposeFinalize( Reset: reset, } s.Require().NoError(s.signers[idx].SignDKGFinalize(final)) - gov.AddDKGFinalize(round, final) + gov.AddDKGFinalize(final) } } |