-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Base58 perfomance patch #3186
Open
kzorin52
wants to merge
24
commits into
neo-project:master
Choose a base branch
from
kzorin52:base58-patch
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+54
−14
Open
Base58 perfomance patch #3186
Changes from 7 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
d9379be
Base58 perfomance improvments
kzorin52 66bbd57
Fix usings
kzorin52 8769111
Update src/Neo/Cryptography/Base58.cs
Jim8y fb882ca
Base58 improvments #2
kzorin52 194c456
Update src/Neo/Cryptography/Base58.cs
shargon a1ce6ab
Merge branch 'master' into base58-patch
Jim8y 6b76b85
Merge branch 'master' into base58-patch
Jim8y 0b06541
Merge branch 'master' into base58-patch
cschuchardt88 696318c
Merge branch 'master' into base58-patch
Jim8y e437511
Merge branch 'master' into base58-patch
shargon f8c7bc8
Merge branch 'master' into base58-patch
cschuchardt88 9a338e6
Merge branch 'master' into base58-patch
cschuchardt88 faeb909
fix perfomance
kzorin52 1b641d8
remove Ext, further optimisations
kzorin52 1a3c0c2
Merge branch 'master' into base58-patch
kzorin52 bd3a205
Clean
shargon 2682e8b
format
kzorin52 babf4a4
Merge branch 'master' into base58-patch
Jim8y a1ff531
Merge branch 'master' into base58-patch
shargon 8c2c577
Reduce array
shargon ea3f6d8
reuse var
shargon 8840fb3
same name as before
shargon bfd9ae1
Merge branch 'master' into base58-patch
shargon 3163eb3
Merge branch 'master' into base58-patch
cschuchardt88 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This cost more in the current code in resources of memory management for the
GC
indotnet
.