aboutsummaryrefslogtreecommitdiffstats
path: root/simulation/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'simulation/app.go')
-rw-r--r--simulation/app.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/simulation/app.go b/simulation/app.go
index 5533abb..797ab91 100644
--- a/simulation/app.go
+++ b/simulation/app.go
@@ -77,6 +77,11 @@ func (a *SimApp) getAckedBlocks(ackHash common.Hash) (output common.Hashes) {
return
}
+// StronglyAcked is called when a block is strongly acked by DEXON
+// Reliabe Broadcast algorithm.
+func (a *SimApp) StronglyAcked(blockHash common.Hash) {
+}
+
// TotalOrderingDeliver is called when blocks are delivered by the total
// ordering algorithm.
func (a *SimApp) TotalOrderingDeliver(blocks []*types.Block, early bool) {