This commit is contained in:
Giacomo Pasini 2023-10-30 15:01:59 +01:00
parent 7342eedf18
commit b4e488acc4
No known key found for this signature in database
GPG Key ID: FC08489D2D895D4B
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ pub enum Error {
NotFound,
}
/// Return the blobs whose certificate has been included in the proived block.
/// Return the blobs whose certificate has been included in the provided block.
pub async fn get_block_blobs(node: Url, block: BlockId) -> Result<Vec<Blob>, Error> {
let block = get_block_contents(&node, block)
.await?