1
0
Fork 0
forked from lthn/blockchain

fixed broken compilation

This commit is contained in:
crypro.zoidberg 2019-04-19 22:14:07 +02:00
parent 4d498a6d0e
commit de4e22c835

View file

@ -1112,7 +1112,7 @@ namespace currency
set_session_blob(job_id, b);
job.blob = string_tools::buff_to_hex_nodelimer(currency::get_block_hashing_blob(b));
//TODO: set up share difficulty here!
job.difficulty = std::to_string(bt_res.difficulty); //difficulty leaved as string field since it will be refactored into 128 bit format
job.difficulty = bt_res.difficulty; //difficulty leaved as string field since it will be refactored into 128 bit format
job.job_id = "SOME_JOB_ID";
get_current_hi(job.prev_hi);
return true;