-
Notifications
You must be signed in to change notification settings - Fork 64
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
Add Schnorr Multi-Signatures #27
Merged
Merged
Conversation
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
…lacement for crypto.h/cpp with schnorr.h/cpp.
Created new branch to work on integrating schnorr. Created inital rep…
…y its score to prevent a segfault
…rting the block processor
…y functions to not work
Not entirely sure what's causing this to happen. I though Lua code was executed in the same thread the execution was started from but perhaps not. Previously the code was blocking on a lock it was already has. As a workaround just remove the lock, it's kind of superfluous anyway since the Storage::Transaction already has a lock on the blockchain class' state.
…do transaction tests. To start is working template of single transaction. Fill it in when create wallet
Can one of the admins verify this patch? |
ok to test |
TODO:
|
FastWriter and StyledWriter have been deprecated by upstream libjsoncpp. Switch to the recommended StreamWriterBuilder instead and manually specify our desired Json stringify style. For classes like Blockchain which keep a Storage poiner around all the time, we should refactor to uses a shared rather than static writer object to save time when writing Json to string.
…me (mit-dci#33) When we replaced FastWriter with StreamWriterBuilder the output format changed (neglecting a trailing newline) and thus blockchain type IDs changed. Since that's consensus critical the new toString code needs to produce the same format string. Add a unit test to catch regressions.
* Linux static build nearly working * Don't build the dynamic libck, SFML doesn't like it * SFML link order matters, system after network * Produce correct binary name
* Add premake5 script and remove un-used raft files * Add docs build * Support build options * Apply lib-dir and include-dir to all projects * Windows library names are different from linux * More libs and a decl needed for windows * Yet more libs for windows * Windows cross-compile working via dockerfile with premake5 * Add OSX specific libs * OSX cross-compile build completes with premake5 * Correct path for dylibbundler to use * Linux static build with Dockerfile and premake5 working * Move system specific library link commands to a function * Remove custom Makefile, update installdeps.sh and readme * Linux build requires gcov
…tain premake5 generated files (mit-dci#40)
…permuted signature
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
TODO:
Would appreciate any feedback, @metalicjames.