mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 01:36:24 +01:00
chanfitness: exit early when there are no updates
This commit is contained in:
parent
523ecc0653
commit
fc5f8e32f5
1 changed files with 6 additions and 0 deletions
|
@ -50,6 +50,12 @@ type FlapCount struct {
|
|||
// bucket for the peer's pubkey if necessary. Note that this function overwrites
|
||||
// the current value.
|
||||
func (d *DB) WriteFlapCounts(flapCounts map[route.Vertex]*FlapCount) error {
|
||||
// Exit early if there are no updates.
|
||||
if len(flapCounts) == 0 {
|
||||
log.Debugf("No flap counts to write, skipped db update")
|
||||
return nil
|
||||
}
|
||||
|
||||
return kvdb.Update(d, func(tx kvdb.RwTx) error {
|
||||
// Run through our set of flap counts and record them for
|
||||
// each peer, creating a bucket for the peer pubkey if required.
|
||||
|
|
Loading…
Add table
Reference in a new issue