Prevent coredump when randomxBlockKey changes
This commit is contained in:
@@ -1233,9 +1233,9 @@ void static RandomXMiner()
|
||||
int keyHeight = ((Mining_height - randomxBlockLag) / randomxInterval) * randomxInterval;
|
||||
fprintf(stderr,"RandomXMiner: key height=%d\n", keyHeight);
|
||||
uint256 randomxBlockKey = chainActive[keyHeight]->GetBlockHash();
|
||||
crypto_generichash_blake2b_state new_state;
|
||||
crypto_generichash_blake2b_update(&state, (unsigned char *)&randomxBlockKey, 32);
|
||||
crypto_generichash_blake2b_final(&state, randomxInput, 32);
|
||||
//crypto_generichash_blake2b_state new_state;
|
||||
//crypto_generichash_blake2b_update(&new_state, (unsigned char *)&randomxBlockKey, 32);
|
||||
//crypto_generichash_blake2b_final(&new_state, randomxInput, 32);
|
||||
|
||||
randomx_init_cache(randomxCache, &randomxBlockKey, sizeof randomxKey);
|
||||
fprintf(stderr,"RandomXMiner: initialized cache with randomxBlockKey=%s\n", randomxBlockKey.ToString().c_str());
|
||||
|
||||
Reference in New Issue
Block a user