aboutsummaryrefslogtreecommitdiffstats
path: root/core/test/governance.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/test/governance.go')
-rw-r--r--core/test/governance.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/test/governance.go b/core/test/governance.go
index 769934b..05ceb62 100644
--- a/core/test/governance.go
+++ b/core/test/governance.go
@@ -231,6 +231,14 @@ func (g *Governance) IsDKGFinal(round uint64) bool {
return g.stateModule.IsDKGFinal(round, int(g.configs[round].DKGSetSize)/3*2)
}
+// ReportForkVote reports a node for forking votes.
+func (g *Governance) ReportForkVote(vote1, vote2 *types.Vote) {
+}
+
+// ReportForkBlock reports a node for forking blocks.
+func (g *Governance) ReportForkBlock(block1, block2 *types.Block) {
+}
+
//
// Test Utilities
//