Remove target height from config

This commit is contained in:
hu55a1n1 2024-02-23 14:26:43 -08:00
parent 089b1eac4d
commit aa32b7798a
2 changed files with 0 additions and 5 deletions

View file

@ -37,10 +37,6 @@ pub struct Cli {
#[clap(long)]
pub chain_id: String,
/// Height of the header to verify
#[clap(long)]
pub target_height: Height,
/// Height of the trusted header (AKA root-of-trust)
#[clap(long)]
pub trusted_height: Height,

View file

@ -33,7 +33,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let light_client_opts = LightClientOpts::new(
args.chain_id,
args.target_height,
args.trusted_height,
args.trusted_hash,
args.trust_threshold,