Skip to content

Commit deb3089

Browse files
Fix after merging main
1 parent 6d77543 commit deb3089

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

cmd/soroban-cli/src/commands/contract/arg_parsing.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,19 +75,19 @@ pub async fn build_host_function_parameters(
7575
spec_entries: &[ScSpecEntry],
7676
config: &config::Args,
7777
) -> Result<HostFunctionParameters, Error> {
78-
build_host_function_parameters_with_filter(contract_id, slop, spec_entries, config, true)
78+
build_host_function_parameters_with_filter(contract_id, slop, spec_entries, config, true).await
7979
}
8080

81-
pub fn build_constructor_parameters(
81+
pub async fn build_constructor_parameters(
8282
contract_id: &stellar_strkey::Contract,
8383
slop: &[OsString],
8484
spec_entries: &[ScSpecEntry],
8585
config: &config::Args,
8686
) -> Result<HostFunctionParameters, Error> {
87-
build_host_function_parameters_with_filter(contract_id, slop, spec_entries, config, false)
87+
build_host_function_parameters_with_filter(contract_id, slop, spec_entries, config, false).await
8888
}
8989

90-
fn build_host_function_parameters_with_filter(
90+
async fn build_host_function_parameters_with_filter(
9191
contract_id: &stellar_strkey::Contract,
9292
slop: &[OsString],
9393
spec_entries: &[ScSpecEntry],

0 commit comments

Comments
 (0)