aboutsummaryrefslogtreecommitdiffstats
path: root/simulation
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-08-20 14:03:18 +0800
committerGitHub <noreply@github.com>2018-08-20 14:03:18 +0800
commit1e71e263e063adbe7e44d48818f9c74924a2945d (patch)
treeb874d8d4d6cc1d0aa6f106f276f83706361f0878 /simulation
parentd9ba7986a975615fb10790cfd448c48c89c1a7b3 (diff)
downloaddexon-consensus-1e71e263e063adbe7e44d48818f9c74924a2945d.tar
dexon-consensus-1e71e263e063adbe7e44d48818f9c74924a2945d.tar.gz
dexon-consensus-1e71e263e063adbe7e44d48818f9c74924a2945d.tar.bz2
dexon-consensus-1e71e263e063adbe7e44d48818f9c74924a2945d.tar.lz
dexon-consensus-1e71e263e063adbe7e44d48818f9c74924a2945d.tar.xz
dexon-consensus-1e71e263e063adbe7e44d48818f9c74924a2945d.tar.zst
dexon-consensus-1e71e263e063adbe7e44d48818f9c74924a2945d.zip
core: NotaryAck interfaces. (#67)
Diffstat (limited to 'simulation')
-rw-r--r--simulation/app.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/simulation/app.go b/simulation/app.go
index a6f9a57..986893c 100644
--- a/simulation/app.go
+++ b/simulation/app.go
@@ -184,3 +184,7 @@ func (a *simApp) DeliverBlock(blockHash common.Hash, timestamp time.Time) {
}
a.Network.NotifyServer(msg)
}
+
+// NotaryAck is called when a notary ack is created.
+func (a *simApp) NotaryAck(notaryAck types.NotaryAck) {
+}