Skip to content

Commit

Permalink
BUGFIX: Was bailing early when fetching local replaceable (not paramt…
Browse files Browse the repository at this point in the history
…erized) events
  • Loading branch information
mikedilger committed Feb 26, 2025
1 parent e0462fa commit 2b6c104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gossip-lib/src/storage/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1657,7 +1657,7 @@ impl Storage {
// pair.
// NOTE that this optimization is difficult to implement
// for other replaceable event situations
if kind.is_replaceable() {
if kind.is_replaceable() && !kind.is_parameterized_replaceable() {
break 'per_event;
}
}
Expand Down

0 comments on commit 2b6c104

Please sign in to comment.