Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gegaowp committed Dec 23, 2024
1 parent a116d7b commit 3e01ba5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ members = [
"crates/sui-indexer-alt",
"crates/sui-indexer-alt-framework",
"crates/sui-indexer-alt-jsonrpc",
"crates/sui-indexer-alt-restorer",
"crates/sui-indexer-alt-schema",
"crates/sui-indexer-builder",
"crates/sui-indexer-alt-restorer",
"crates/sui-json",
"crates/sui-json-rpc",
"crates/sui-json-rpc-api",
Expand Down Expand Up @@ -644,8 +644,8 @@ sui-genesis-builder = { path = "crates/sui-genesis-builder" }
sui-indexer = { path = "crates/sui-indexer" }
sui-indexer-alt-framework = { path = "crates/sui-indexer-alt-framework" }
sui-indexer-alt-jsonrpc = { path = "crates/sui-indexer-alt-jsonrpc" }
sui-indexer-alt-restorer = { path = "crates/sui-indexer-alt-restorer" }
sui-indexer-alt-schema = { path = "crates/sui-indexer-alt-schema" }
sui-indexer-alt-restorer = { path = "crates/sui-indexer-restorer" }
sui-indexer-builder = { path = "crates/sui-indexer-builder" }
sui-json = { path = "crates/sui-json" }
sui-json-rpc = { path = "crates/sui-json-rpc" }
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-indexer-alt-restorer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub struct Args {
pub start_epoch: u64,

/// Url of the endpoint to fetch snapshot files from,
/// for example https://formal-snapshot.mainnet.sui.io
/// for example <https://formal-snapshot.mainnet.sui.io>
#[clap(long, env = "ENDPOINT", required = true)]
pub endpoint: String,

Expand Down
11 changes: 2 additions & 9 deletions crates/sui-indexer-alt/src/handlers/obj_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,9 @@ use anyhow::Result;
use diesel_async::RunQueryDsl;
use sui_field_count::FieldCount;
use sui_indexer_alt_framework::pipeline::{concurrent::Handler, Processor};
use sui_indexer_alt_schema::{
objects::StoredObjInfo,
schema::obj_info,
};
use sui_indexer_alt_schema::{objects::StoredObjInfo, schema::obj_info};
use sui_pg_db as db;
use sui_types::{
base_types::ObjectID,
full_checkpoint_content::CheckpointData,
object::Object,
};
use sui_types::{base_types::ObjectID, full_checkpoint_content::CheckpointData, object::Object};

pub(crate) struct ObjInfo;

Expand Down

0 comments on commit 3e01ba5

Please sign in to comment.