aboutsummaryrefslogtreecommitdiffstats
path: root/simulation
diff options
context:
space:
mode:
Diffstat (limited to 'simulation')
-rw-r--r--simulation/app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/simulation/app.go b/simulation/app.go
index 40aa32b..719b8de 100644
--- a/simulation/app.go
+++ b/simulation/app.go
@@ -126,7 +126,7 @@ func (a *simApp) TotalOrderingDeliver(blockHashes common.Hashes, early bool) {
confirmLatency = append(confirmLatency,
now.Sub(block.Timestamp))
}
- for hash := range block.Acks {
+ for _, hash := range block.Acks {
for _, blockHash := range a.getAckedBlocks(hash) {
payload = append(payload, timestampMessage{
BlockHash: blockHash,