-
Notifications
You must be signed in to change notification settings - Fork 93
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
Gemfile.lock #8
Open
markhu
wants to merge
35
commits into
wink:master
Choose a base branch
from
GemHQ:gemfile-lock
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.
Open
Gemfile.lock #8
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
ensure uncompressed addresses are on same bitcoin network
support uncompressed to_address
* master: support uncompressed addresses ensure subnodes are on same bitcoin network Group is already removed by EC_KEY_free clear and free EC_GROUP object Adding unit tests for OpenSSL extensions Clearing and freeing pointers Fixing memory leak, need to free EC_POINT objects Validating inputs: must be points or it can segfault Updating test suite to use :expect notation instead of :should (https://github.com/rspec/rspec-expectations/blob/master/Should.md)
* develop: nil'd after freeing
Money-Tree, in essence is a key-derivation tool. The keys it derives are not aware of the 'coin', or 'version'. So there is now no notion of network held as state on anything. Money-Tree derives keys, and in the various forms of serialization you can specify which type of coin (version bytes) you'd like to use. Although it may seem tedious, it allows trees to be coin-agnostic until serialization (and theoretically the usage of the same key-pairs for different coin addresses.)
If the user provides a NETWORK that is not recognized, we throw an error.
Rename to_serialized_address to to_bip32 same for from_serialized_address. Deprecate old methods.
Remove network state
update deprecated calls in specs
make readme use to/from_bip32
**What changed?** * Have all internal exceptions descend from `StandardError` rather than `Exception`. **Why?** * This is a Ruby gotcha (see link below). Essentially using `rescue => e` will not catch any of these exceptions as this only catches subclasses of `StandardError`. This can cause users of the library to get unexpected results when implementing error handling this way. **References** [Rescue StandardError, Not Exception](https://robots.thoughtbot.com/rescue-standarderror-not-exception)
Get rid of Bignum deprecation for ruby 2.4+
Support more libssl library names so this will work on heroku
Update key.rb to support ruby 2.4+ without deprecation warnings
…-exception [Fix] Descend From StandardError Not Exception
adds extra libssl location
for integration with external security scanner services, i.e. https://snyk.io/
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.
adds Gemfile.lock manifest file
for integration with external security scanner services, i.e. https://snyk.io/