This commit is contained in:
jl777
2017-03-18 16:24:33 +02:00
parent 7b07815861
commit 8fa910175a
2 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/bash
set -x
source pubkey.txt
echo $pubkey

View File

@@ -678,7 +678,9 @@ void static BitcoinMiner(CWallet *pwallet)
}
for (j=gpucount=0; j<65; j++)
{
fprintf(stderr,"%d ",mids[j]);
if ( mids[j] >= 0 )
fprintf(stderr,"%d ",mids[j]);
else fprintf(stderr,"GPU ");
if ( mids[j] == -1 )
gpucount++;
}