Skip to content

Commit

Permalink
chore: fix some comments (#3873)
Browse files Browse the repository at this point in the history
Signed-off-by: stellrust <[email protected]>
  • Loading branch information
stellrust authored Jul 15, 2024
1 parent c072e13 commit 9373610
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/FIO/Signer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ bool Signer::verify(const PublicKey& pubKey, const Data& data, const Data& signa
return pubKey.verify(TW::data(signature.data() + 1, signature.size() - 1), data);
}

// canonical check for FIO, both R and S lenght is 32
// canonical check for FIO, both R and S length is 32
int Signer::isCanonical([[maybe_unused]] uint8_t by, uint8_t sig[64]) {
return !(sig[0] & 0x80)
&& !(sig[0] == 0 && !(sig[1] & 0x80))
Expand Down
2 changes: 1 addition & 1 deletion tools/ios-build
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ build_mac_x64_arm64() {
}

create_xc_framework() {
echo "Createing xcframework..."
echo "Creating xcframework..."
xcodebuild -create-xcframework -output $BUILD_FOLDER/$FRAMEWORK.xcframework \
-framework $BUILD_FOLDER/ios-arm64.xcarchive/Products/Library/Frameworks/$FRAMEWORK.framework \
-framework $BUILD_FOLDER/ios-arm64_x86_64-simulator.xcarchive/Products/Library/Frameworks/$FRAMEWORK.framework \
Expand Down

0 comments on commit 9373610

Please sign in to comment.