diff options
Diffstat (limited to 'core/nonblocking-application.go')
-rw-r--r-- | core/nonblocking-application.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/nonblocking-application.go b/core/nonblocking-application.go index cb83b17..2226eb0 100644 --- a/core/nonblocking-application.go +++ b/core/nonblocking-application.go @@ -44,8 +44,8 @@ type deliverBlockEvent struct { timestamp time.Time } -type notaryAckEvent struct { - notaryAck *types.NotaryAck +type witnessAckEvent struct { + witnessAck *types.WitnessAck } // nonBlockingApplication implements Application and is a decorator for @@ -100,8 +100,8 @@ func (app *nonBlockingApplication) run() { app.app.TotalOrderingDeliver(e.blockHashes, e.early) case deliverBlockEvent: app.app.DeliverBlock(e.blockHash, e.timestamp) - case notaryAckEvent: - app.app.NotaryAckDeliver(e.notaryAck) + case witnessAckEvent: + app.app.WitnessAckDeliver(e.witnessAck) default: fmt.Printf("Unknown event %v.", e) } @@ -154,7 +154,7 @@ func (app *nonBlockingApplication) DeliverBlock( app.addEvent(deliverBlockEvent{blockHash, timestamp}) } -// NotaryAckDeliver is called when a notary ack is created. -func (app *nonBlockingApplication) NotaryAckDeliver(notaryAck *types.NotaryAck) { - app.addEvent(notaryAckEvent{notaryAck}) +// WitnessAckDeliver is called when a witness ack is created. +func (app *nonBlockingApplication) WitnessAckDeliver(witnessAck *types.WitnessAck) { + app.addEvent(witnessAckEvent{witnessAck}) } |