We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 670a9ff commit dd39575Copy full SHA for dd39575
.github/workflows/publish-nuget.yml
@@ -87,7 +87,7 @@ jobs:
87
run: dotnet nuget push ./artifacts/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
88
89
- name: Create GitHub Release
90
- uses: softprops/action-gh-release@v1
+ uses: softprops/action-gh-release@v2
91
with:
92
files: ./artifacts/*.nupkg
93
generate_release_notes: true
src/Base58Encoding/CountLeading.Base58.cs
@@ -12,7 +12,7 @@ internal static int CountLeadingZeros(ReadOnlySpan<byte> data)
12
if (data.Length == 0)
13
return 0;
14
15
- if (data.Length <= 16)
+ if (data.Length < 16)
16
return CountLeadingZerosScalar(data);
17
18
int count = CountLeadingZerosSimd(data, out int processed);
0 commit comments