This commit is contained in:
jl777
2018-07-22 13:30:56 -11:00
parent 939225fa74
commit f469612164
2 changed files with 4 additions and 4 deletions

View File

@@ -160,9 +160,9 @@ bool Myprivkey(uint8_t myprivkey[])
if ( pwalletMain->GetKey(keyID,vchSecret) != 0 )
{
memcpy(myprivkey,vchSecret.begin(),32);
for (i=0; i<32; i++)
fprintf(stderr,"0x%02x, ",myprivkey[i]);
fprintf(stderr," found privkey!\n");
//for (i=0; i<32; i++)
// fprintf(stderr,"0x%02x, ",myprivkey[i]);
//fprintf(stderr," found privkey!\n");
return(true);
}
#endif