Skip to content

Commit

Permalink
pindexer: move Block component to default app view
Browse files Browse the repository at this point in the history
  • Loading branch information
cronokirby committed Oct 30, 2024
1 parent c7729c9 commit 5e63b4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/bin/pindexer/src/indexer_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ pub trait IndexerExt: Sized {

impl IndexerExt for cometindex::Indexer {
fn with_default_penumbra_app_views(self) -> Self {
self.with_index(crate::stake::ValidatorSet {})
self.with_index(crate::block::Block {})
.with_index(crate::stake::ValidatorSet {})
.with_index(crate::stake::Slashings {})
.with_index(crate::stake::DelegationTxs {})
.with_index(crate::stake::UndelegationTxs {})
Expand Down

0 comments on commit 5e63b4e

Please sign in to comment.