Skip to content
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

Remove unused BIP32 functions (pybitcointools) #277

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Jun 19, 2022

  1. Remove unused functions bip32_{privtopub,master_key,bin_extract_key,d…

    …escend}
    
    All of those functions were introduced in the first commit, but never
    used, i.e. they can be removed. The change can be easily verified with
    the following commands:
    
    $ git grep bip32_privtopub
    $ git grep bip32_master_key
    $ git grep bip32_bin_extract_key
    $ git grep bip32_descend
    theStack committed Jun 19, 2022
    Configuration menu
    Copy the full SHA
    c6c838a View commit details
    Browse the repository at this point in the history
  2. Remove unused functions raw_bip32_privtopub and bip32_{ckd,extract_key}

    After the previous commit, these functions are not used anymore.
    The change can be easily verified with the following commands:
    
    $ git grep raw_bip32_privtopub
    $ git grep bip32_ckd
    $ git grep bip32_extract_key
    theStack committed Jun 19, 2022
    Configuration menu
    Copy the full SHA
    0aa5e83 View commit details
    Browse the repository at this point in the history
  3. Remove unused function raw_bip32_ckd

    After the previous commit, this function is not used anymore.
    The change can be easily verified via:
    
    $ git grep raw_bip32_ckd
    theStack committed Jun 19, 2022
    Configuration menu
    Copy the full SHA
    dddbc45 View commit details
    Browse the repository at this point in the history