Pymmdrza / Pyromid

Pyromid For Hack and Cracking Private Key and Address Bitcoin Wallet From Mnemonic [Words - Passphrase]
https://pyromid.readthedocs.io/en/latest/
107 stars 47 forks source link

Improvements to something #14

Closed ThewsyRum closed 3 months ago

ThewsyRum commented 5 months ago

The code uses recursion in the KeyGen function which can lead to stack overflow errors for large inputs.

The code also opens and writes to the 'Found.txt' file several times within the loop, which can be inefficient.

Performs file I/O operations inside the loop, which may slow down execution.

Pymmdrza commented 5 months ago

The code uses recursion in the KeyGen function which can lead to stack overflow errors for large inputs.

The code also opens and writes to the 'Found.txt' file several times within the loop, which can be inefficient.

Performs file I/O operations inside the loop, which may slow down execution.

In the new version all of them are fixed.

ThewsyRum commented 5 months ago

Great so