Skip to content

Commit

Permalink
Merge pull request #212 from jl777/dev
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
jl777 authored Feb 25, 2017
2 parents b05aac8 + eaba9a2 commit 359a7b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/miner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ void static BitcoinMiner(CWallet *pwallet)
} else Mining_start = 0;
while (true)
{
if ( ASSETCHAINS_SYMBOL[0] != 0 && pblock->vtx[0].vout.size() == 1 && Mining_height > ASSETCHAINS_MINHEIGHT )
if ( 0 && ASSETCHAINS_SYMBOL[0] != 0 && pblock->vtx[0].vout.size() == 1 && Mining_height > ASSETCHAINS_MINHEIGHT ) // skips when it shouldnt
{
fprintf(stderr,"skip generating %s on-demand block, no tx avail\n",ASSETCHAINS_SYMBOL);
sleep(10);
Expand Down
2 changes: 1 addition & 1 deletion src/wallet/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2386,7 +2386,7 @@ bool CWallet::SelectCoinsMinConf(const CAmount& nTargetValue, int nConfMine, int
}
if ( nTotalLower > 2*nTargetValue + CENT )
{
fprintf(stderr,"why bother with all the utxo if we have double what is needed?\n");
//fprintf(stderr,"why bother with all the utxo if we have double what is needed?\n");
break;
}
}
Expand Down

0 comments on commit 359a7b1

Please sign in to comment.