Skip to content

Commit

Permalink
Add TransactionMemos to compaction filter
Browse files Browse the repository at this point in the history
  • Loading branch information
CriesofCarrots committed Oct 6, 2023
1 parent fd14a5e commit 9d52ebe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ledger/src/blockstore_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2092,7 +2092,9 @@ fn should_enable_cf_compaction(cf_name: &str) -> bool {
// completed on a given range or file.
matches!(
cf_name,
columns::TransactionStatus::NAME | columns::AddressSignatures::NAME
columns::TransactionStatus::NAME
| columns::TransactionMemos::NAME
| columns::AddressSignatures::NAME
)
}

Expand Down

0 comments on commit 9d52ebe

Please sign in to comment.