Skip to content

Commit

Permalink
pindexer: supply: fix pindexer main
Browse files Browse the repository at this point in the history
  • Loading branch information
cronokirby committed Sep 23, 2024
1 parent 37618d6 commit a27d839
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/bin/pindexer/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
use anyhow::Result;
use clap::Parser as _;
use pindexer::{supply::Supply, Indexer, Options};
use pindexer::block::Block;
use pindexer::{Indexer, IndexerExt as _, Options};

#[tokio::main]
async fn main() -> Result<()> {
Indexer::new(Options::parse())
.with_default_tracing()
.with_index(Supply::new())
.with_default_penumbra_app_views()
.with_index(Block {})
.run()
.await?;

Expand Down

0 comments on commit a27d839

Please sign in to comment.