@@ -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