Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Desyationer
on 12/04/2025, 22:34:59 UTC
I'm not a programmer at all - the code I use is entirely written by AI. However, the AI couldn't give me a clear answer to my question: is it possible to iterate over private keys within a specific range while instantly filtering out "unreliable" ones, without affecting the performance of the iteration itself? Or does the CUDA architecture only support fully linear brute-force traversal with no filtering whatsoever in order to maintain optimal speed, making any on-the-fly filtering too resource-intensive due to the massive size of the range? I couldn't even implement this in Python with the help of the AI - writing a basic key iteration script is easy, but as soon as I try to apply even a simple filter, the script slows down significantly. Despite many attempts, the AI couldn't help me solve this problem.