diff options
Diffstat (limited to 'simulation')
-rw-r--r-- | simulation/governance.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simulation/governance.go b/simulation/governance.go index 0a2c886..fb6ac5c 100644 --- a/simulation/governance.go +++ b/simulation/governance.go @@ -120,7 +120,7 @@ func (g *simGovernance) NotifyRoundHeight(round, height uint64) { } // ProposeCRS proposes a CRS of round. -func (g *simGovernance) ProposeCRS(signedCRS []byte) { +func (g *simGovernance) ProposeCRS(round uint64, signedCRS []byte) { crs := crypto.Keccak256Hash(signedCRS) if g.crs[len(g.crs)-1].Equal(crs) { return |