aboutsummaryrefslogtreecommitdiffstats
path: root/core/interfaces.go
diff options
context:
space:
mode:
authorMission Liao <mission.liao@dexon.org>2018-11-29 09:46:40 +0800
committerGitHub <noreply@github.com>2018-11-29 09:46:40 +0800
commit8470ac070f097b261fddc42991a4d2e9ec998db6 (patch)
tree2aeedc0e2d96937394e7929c8bd4ab1b9ee37240 /core/interfaces.go
parent9ea448b35bfbc12155bf4c286fb5ed657919c1cf (diff)
downloadtangerine-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar
tangerine-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar.gz
tangerine-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar.bz2
tangerine-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar.lz
tangerine-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar.xz
tangerine-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.tar.zst
tangerine-consensus-8470ac070f097b261fddc42991a4d2e9ec998db6.zip
core: remove StronglyAcked (#347)
Diffstat (limited to 'core/interfaces.go')
-rw-r--r--core/interfaces.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/interfaces.go b/core/interfaces.go
index e07476d..6979854 100644
--- a/core/interfaces.go
+++ b/core/interfaces.go
@@ -49,9 +49,6 @@ type Application interface {
// Debug describes the application interface that requires
// more detailed consensus execution.
type Debug interface {
- // StronglyAcked is called when a block is strongly acked.
- StronglyAcked(blockHash common.Hash)
-
// TotalOrderingDelivered is called when the total ordering algorithm deliver
// a set of block.
TotalOrderingDelivered(common.Hashes, uint32)