diff options
author | Mission Liao <mission.liao@dexon.org> | 2018-11-29 09:46:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-29 09:46:40 +0800 |
commit | 8470ac070f097b261fddc42991a4d2e9ec998db6 (patch) | |
tree | 2aeedc0e2d96937394e7929c8bd4ab1b9ee37240 /simulation | |
parent | 9ea448b35bfbc12155bf4c286fb5ed657919c1cf (diff) | |
download | dexon-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar dexon-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar.gz dexon-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar.bz2 dexon-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar.lz dexon-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar.xz dexon-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar.zst dexon-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.zip |
core: remove StronglyAcked (#347)
Diffstat (limited to 'simulation')
-rw-r--r-- | simulation/app.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/simulation/app.go b/simulation/app.go index 9195619..89d76ae 100644 --- a/simulation/app.go +++ b/simulation/app.go @@ -132,11 +132,6 @@ func (a *simApp) PrepareWitness(height uint64) (types.Witness, error) { return a.latestWitness, nil } -// StronglyAcked is called when a block is strongly acked by DEXON -// Reliabe Broadcast algorithm. -func (a *simApp) StronglyAcked(blockHash common.Hash) { -} - // TotalOrderingDelivered is called when blocks are delivered by the total // ordering algorithm. func (a *simApp) TotalOrderingDelivered( |