Merge branch 'ripple/smart-escrow' into ripple/se/supported

This commit is contained in:
Mayukha Vadari
2025-10-24 16:06:25 -04:00

View File

@@ -431,7 +431,7 @@ WasmHostFunctionsImpl::updateData(Slice const& data)
return Unexpected(HostFunctionError::DATA_FIELD_TOO_LARGE); return Unexpected(HostFunctionError::DATA_FIELD_TOO_LARGE);
} }
data_ = Bytes(data.begin(), data.end()); data_ = Bytes(data.begin(), data.end());
return data_.size(); return data_->size();
} }
Expected<int32_t, HostFunctionError> Expected<int32_t, HostFunctionError>