Fix cli program deploys by avoiding zero account balance (#7497)

This commit is contained in:
Justin Starry 2019-12-16 11:53:00 -05:00 committed by GitHub
parent 7ad64c8d45
commit 862e7a410d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -801,7 +801,7 @@ fn process_deploy(
&config.keypair,
&program_id,
blockhash,
minimum_balance,
minimum_balance.max(1),
program_data.len() as u64,
&bpf_loader::id(),
);