Skip to content

Commit

Permalink
indexer-alt: fix kv_feature_flags name (MystenLabs#20284)
Browse files Browse the repository at this point in the history
## Description
Fixing copypasta

## Test plan

:eyes:

---

## 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
amnn authored Nov 15, 2024
1 parent 938fb6e commit cfb8268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sui-indexer-alt/src/handlers/kv_feature_flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use crate::{
pub struct KvFeatureFlags(pub StoredGenesis);

impl Processor for KvFeatureFlags {
const NAME: &'static str = "kv_protocol_configs";
const NAME: &'static str = "kv_feature_flags";
type Value = StoredFeatureFlag;

fn process(&self, checkpoint: &Arc<CheckpointData>) -> Result<Vec<Self::Value>> {
Expand Down

0 comments on commit cfb8268

Please sign in to comment.