Skip to content

Commit

Permalink
feat(hubble): tendermint fetcher - client mapper
Browse files Browse the repository at this point in the history
  • Loading branch information
qlp committed Sep 23, 2024
1 parent b392a58 commit 38b1447
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -616,6 +616,7 @@ groth
groupkeeper
groupmodule
grpclog
grpcs
hackerman
haitlahcen
hasher
Expand Down
8 changes: 4 additions & 4 deletions hubble/hubble.nix
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@
options.type = mkOption { type = types.enum [ "tendermint" "ethereum" "beacon" "bera" "ethereum-fork" "arb" "scroll" "eth-fetcher" ]; };
options.start_height = mkOption { type = types.int; example = 1; default = 0; };
options.chunk_size = mkOption { type = types.int; example = 1; default = 200; };
options.tx_search_max_page_size = mkOption {
type = types.int;
options.tx_search_max_page_size = mkOption {
type = types.int;
description = "Maximum number of transactions to fetch in one page";
example = 1;
default = 100;
example = 1;
default = 100;
};
options.until = mkOption { type = types.int; example = 1; default = 1000000000000; };
options.harden = mkOption { type = types.bool; example = true; default = true; };
Expand Down
2 changes: 1 addition & 1 deletion hubble/src/indexer/tm/create_client_tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub fn schedule_create_client_checker(
result.response.into_inner().client_state.expect("client state"),
),
Err(err) => {
warn!("{}: error fertching client status for {}: {}", internal_chain_id, client_id, err);
warn!("{}: error fetching client status for {}: {}", internal_chain_id, client_id, err);
continue;
}
};
Expand Down

0 comments on commit 38b1447

Please sign in to comment.