Skip to content

Commit

Permalink
update deploy and revert back to testnet release snarkos version
Browse files Browse the repository at this point in the history
  • Loading branch information
asharma13524 committed Aug 16, 2024
1 parent 2251052 commit 84b2659
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions cli/src/commands/developer/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,15 @@ impl Deploy {
let deployment = package.deploy::<A>(None)?;
let deployment_id = deployment.to_deployment_id()?;

match deployment.num_combined_variables() {
Ok(num_variables) => {
println!("Number of variables: {}", num_variables);
}
Err(e) => {
println!("Failed to get number of variables: {}", e);
}
}

// Generate the deployment transaction.
let transaction = {
// Initialize an RNG.
Expand Down

0 comments on commit 84b2659

Please sign in to comment.