Skip to content

Commit

Permalink
V2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ELHARAKA committed Oct 31, 2023
1 parent 6380f35 commit 7c42dfa
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pvkmassconvert.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Module for converting massive bitcoin private keys to Uncompressed WIF.
"""

from conversion_utils import convert_hex_to_wif
from common import process_file
from src.conversion_utils import convert_hex_to_wif
from src.common import process_file

def convert(hex_private_key):
"""
Expand Down
4 changes: 2 additions & 2 deletions pvkmassconvert_compressed.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Module for converting massive bitcoin private keys to compressed WIF.
"""

from conversion_utils import convert_hex_to_wif
from common import process_file
from src.conversion_utils import convert_hex_to_wif
from src.common import process_file

def convert(hex_private_key):
"""
Expand Down
2 changes: 1 addition & 1 deletion pvkwif2hex.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Module for converting massive bitcoin private keys from WIF to HEX.
"""

import base58
from src.base58 import base58

def wif_to_hex(wif_key):
"""
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7c42dfa

Please sign in to comment.