You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// a)
const blob = results[0][0] as Blob; // This is the correct way to pass in the blob reference
// b)
const blob = results[0] as Blob; // But, an incorrect value such as this one, will cause a segfault
const blobStream = await attachment.openBlob(transaction, blob);
The text was updated successfully, but these errors were encountered:
Example:
The text was updated successfully, but these errors were encountered: