We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I know this is very inefficient but it's to debug the keys that are being tried in my OpenCL setup.
How can I debug the private keys that are being generated? Can I output them to the log file somehow?
Thank you.
The text was updated successfully, but these errors were encountered:
BitcoinAddressFinder/src/main/java/net/ladenthin/bitcoinaddressfinder/KeyUtility.java
Line 70 in e649e87
just add this code
public BigInteger createSecret(int maximumBitLength, Random random) { BigInteger secret = new BigInteger(maximumBitLength, random); //logopogo DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss,SSS"); LocalDateTime now = LocalDateTime.now(); System.out.println(dtf.format(now) + " sc " + secret.toString(2)); return secret; }
and this
import java.time.format.DateTimeFormatter; import java.time.LocalDateTime;
to begin of file
Sorry, something went wrong.
No branches or pull requests
I know this is very inefficient but it's to debug the keys that are being tried in my OpenCL setup.
How can I debug the private keys that are being generated? Can I output them to the log file somehow?
Thank you.
The text was updated successfully, but these errors were encountered: