Skip to content

Commit 56529b1

Browse files
authored
reduce sleep from 1s to 100ms for txindex update (#1457)
1 parent 5749675 commit 56529b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/txindex.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ func (txi *TXIndex) Start() {
189189
break
190190
}
191191

192-
time.Sleep(1 * time.Second)
192+
time.Sleep(100 * time.Millisecond)
193193
}
194194
}()
195195
}

0 commit comments

Comments
 (0)