From c9e0f9d98585b0e1b9a9c72726f71414fe2e9438 Mon Sep 17 00:00:00 2001 From: nym21 Date: Thu, 19 Jun 2025 14:16:24 +0200 Subject: [PATCH] query: remove dup 'h' short index --- crates/brk_query/src/index.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/brk_query/src/index.rs b/crates/brk_query/src/index.rs index 0c9ed28f5..5469a86a0 100644 --- a/crates/brk_query/src/index.rs +++ b/crates/brk_query/src/index.rs @@ -67,7 +67,7 @@ impl Index { Self::DecadeIndex => &["decade", "decadeindex"], Self::DifficultyEpoch => &["difficulty", "difficultyepoch"], Self::EmptyOutputIndex => &["empty", "emptyoutputindex"], - Self::HalvingEpoch => &["h", "halving", "halvingepoch"], + Self::HalvingEpoch => &["halving", "halvingepoch"], Self::Height => &["h", "height"], Self::InputIndex => &["txin", "inputindex"], Self::MonthIndex => &["m", "month", "monthindex"],