Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix(lnd): increment cfilter height during birthday block recan
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed Jun 13, 2019
1 parent c2a0564 commit d0f8a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/neutrino/neutrino.js
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ class Neutrino extends EventEmitter {
}
// Otherwise, see if we can parse the current cfilter height from it.
else {
cfilter = this.getCfilterIncrement(line)
cfilter = this.getCfilterIncrement(line) || this.getRecoveryHeightIncrement(line)
if (cfilter) {
this.setNeutrinoCfilterHeight(cfilter)
}
Expand Down

0 comments on commit d0f8a22

Please sign in to comment.