Delete File
/// Submits a transaction to delete a file. The file can have multiple holders.
///
/// # Parameters
///
/// - `account`: The identifier of the account initiating the deletion transaction.
/// - `file_hash`: The unique hash of the file to be deleted.
///
/// # Returns
///
/// Returns a `Result` that, on success, contains a tuple with:
/// - `TxHash`: The transaction hash associated with the deletion of the file.
/// - `DeleteFile`: A structure representing the result of the file deletion.
///
pub async fn delete_file(
&self,
account: &str,
file_hash: &str,
) -> Result<(TxHash, DeleteFile), Box<dyn std::error::Error>>Last updated