We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbaa00f commit 75635bfCopy full SHA for 75635bf
wasm/src/programs/manager/deploy.rs
@@ -115,13 +115,7 @@ impl ProgramManager {
115
);
116
117
// Create the program owner
118
- let owner = ProgramOwnerNative::new(private_key, deployment_id, &mut StdRng::from_entropy())
119
- .map_err(|err| err.to_string())?;
120
-
121
- log("Verifying the deployment and fees");
122
- process
123
- .verify_deployment::<CurrentAleo, _>(&deployment, &mut StdRng::from_entropy())
124
+ let owner = ProgramOwnerNative::new(private_key, deployment_id, rng).map_err(|err| err.to_string())?;
125
126
log("Creating deployment transaction");
127
Ok(Transaction::from(
0 commit comments