Skip to content

Commit

Permalink
fix(hubble): improve reorg handling - register nix options
Browse files Browse the repository at this point in the history
  • Loading branch information
qlp committed Sep 12, 2024
1 parent 78ffcbf commit fc275c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hubble/hubble.nix
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@

options.chain_id = mkOption { type = types.nullOr types.str; example = "union-testnet-8"; default = null; };
options.grpc_url = mkOption { type = types.nullOr types.str; example = "https://grpc.example.com"; default = null; };
options.type = mkOption { type = types.enum [ "tendermint" "ethereum" "beacon" "bera" "ethereum-fork" "arb" "scroll" ]; };
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.until = mkOption { type = types.int; example = 1; default = 1000000000000; };
Expand Down

0 comments on commit fc275c2

Please sign in to comment.