Skip to content

Commit 02e237d

Browse files
Blake build fix (#343)
Fix build issue with Blake3 usage
1 parent 9ae7233 commit 02e237d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/src/utils/hash_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ pub fn blake3_from_asset(path: &Path) -> Result<String> {
551551
}
552552
}
553553

554-
let hash = hasher.finalize();
554+
let hash = blake3::Hasher::finalize(&hasher);
555555

556556
Ok(hash.to_hex().as_str().to_owned())
557557
}

0 commit comments

Comments
 (0)