peer: lower logCommitTimer check to 100ms

This commit is contained in:
Olaoluwa Osuntokun 2017-04-14 11:24:50 -07:00
parent eb37dba3f6
commit d146411712
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2

@ -1142,7 +1142,7 @@ func (p *peer) htlcManager(channel *lnwallet.LightningChannel,
batchTimer := time.NewTicker(50 * time.Millisecond)
defer batchTimer.Stop()
logCommitTimer := time.NewTicker(300 * time.Millisecond)
logCommitTimer := time.NewTicker(100 * time.Millisecond)
defer logCommitTimer.Stop()
out:
for {