Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #372 from prosopo/371-remove-quotes-from-docstrings
Browse files Browse the repository at this point in the history
Remove quotes from docstrings
  • Loading branch information
goastler authored May 24, 2023
2 parents dc15f7d + 6332355 commit e2398ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/captcha/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,9 @@ pub mod captcha {
}

/// Verify a signature. The payload is a blake128 hash of the payload wrapped in the Byte tag. E.g.
/// message="hello"
/// message=hello
/// hash=blake128(message) // 0x1234... (32 bytes)
/// payload="<Bytes>0x1234...</Bytes>" (32 bytes + 15 bytes (tags) + 2 bytes (multihash notation) = 49 bytes)
/// payload=<Bytes>0x1234...</Bytes> (32 bytes + 15 bytes (tags) + 2 bytes (multihash notation) = 49 bytes)
///
/// Read more about multihash notation here https://w3c-ccg.github.io/multihash/index.xml#mh-example (adds two bytes to identify type and length of hash function)
///
Expand Down

0 comments on commit e2398ef

Please sign in to comment.