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 cd72bd7 commit c35c080Copy full SHA for c35c080
src/hyperlight_common/src/flatbuffer_wrappers/function_types.rs
@@ -181,7 +181,7 @@ impl TryFrom<Parameter<'_>> for ParameterValue {
181
ParameterValue::String(hlstring.value().unwrap_or_default().to_string())
182
}),
183
FbParameterValue::hlvecbytes => param.value_as_hlvecbytes().map(|hlvecbytes| {
184
- ParameterValue::VecBytes(hlvecbytes.value().unwrap_or_default().iter().collect())
+ ParameterValue::VecBytes(hlvecbytes.value().unwrap_or_default().bytes().to_vec())
185
186
other => {
187
bail!("Unexpected flatbuffer parameter value type: {:?}", other);
0 commit comments