vlnahp / Btcbf

Bitcoin private key brute force tool, written in python. Also can be used as a bitcoin wallet generator.
GNU Affero General Public License v3.0
334 stars 135 forks source link

Using a Set to store offline addresses #60

Closed gitpushoriginmaster closed 1 year ago

gitpushoriginmaster commented 1 year ago

The change is halving the amount of used memory. It replaces the usage of a Dict (that was storing each address twice) with a Set, which also uses hash for the quick lookup.