Skip to content

Commit

Permalink
Add info for --ignore-check
Browse files Browse the repository at this point in the history
  • Loading branch information
stellarsaur committed Oct 31, 2023
1 parent 301a298 commit 180c98c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/soroban-cli/src/commands/contract/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ pub struct Cmd {
#[command(flatten)]
pub fee: crate::fee::Args,
#[arg(long, short = 'i')]
/// Whether to ignore safety checks when deploying contracts
pub ignore_checks: bool,
}

Expand Down Expand Up @@ -205,7 +206,7 @@ fn get_contract_meta_sdk_version(wasm_spec: &utils::contract_spec::ContractSpec)
}
}
}
return None;
None
}

fn build_create_contract_tx(
Expand Down

0 comments on commit 180c98c

Please sign in to comment.