Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bip-0066.mediawiki
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ bool static IsValidSignatureEncoding(const std::vector<unsigned char> &sig) {
// Extract the length of the R element.
unsigned int lenR = sig[3];

// Make sure the length of the S element is still inside the signature.
// Make sure the length of the R element is still inside the signature.
if (5 + lenR >= sig.size()) return false;

// Extract the length of the S element.
Expand Down