Skip to content

Commit

Permalink
[easy][indexer] Remove last mentions of tx_recipients and tx_senders …
Browse files Browse the repository at this point in the history
…tables (#20289)

## Description 

These tables no longer exist in the indexer schema

## Test plan 

How did you test the new or updated feature?

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] Indexer: 
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:
- [ ] REST API:
  • Loading branch information
wlmyng authored Dec 10, 2024
1 parent 6226f54 commit 6f642d7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions crates/sui-indexer/src/handlers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,8 +288,6 @@ pub enum CommitterTables {
TxDigests,
TxInputObjects,
TxKinds,
TxRecipients,
TxSenders,

Checkpoints,
PrunerCpWatermark,
Expand Down
4 changes: 0 additions & 4 deletions crates/sui-indexer/src/handlers/pruner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ pub enum PrunableTable {
TxDigests,
TxInputObjects,
TxKinds,
TxRecipients,
TxSenders,

Checkpoints,
PrunerCpWatermark,
Expand Down Expand Up @@ -96,8 +94,6 @@ impl PrunableTable {
PrunableTable::TxDigests => tx,
PrunableTable::TxInputObjects => tx,
PrunableTable::TxKinds => tx,
PrunableTable::TxRecipients => tx,
PrunableTable::TxSenders => tx,

PrunableTable::Checkpoints => cp,
PrunableTable::PrunerCpWatermark => cp,
Expand Down

0 comments on commit 6f642d7

Please sign in to comment.