Skip to content

Commit 4537259

Browse files
committed
Added space before the comment starts
1 parent 2cd67fe commit 4537259

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/standard/rng/BlockhashRNGFallbackRange.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ contract BlockHashRNGFallback is BlockHashRNG {
2929
* @param _block Block the random number is linked to.
3030
*/
3131
function saveRN(uint _block) public {
32-
if (_block < block.number && randomNumber[_block] == 0) {// If the random number is not already set and can be.
32+
if (_block < block.number && randomNumber[_block] == 0) { // If the random number is not already set and can be.
3333
// The below equation is valid for all cases (last 256 blockhash of blocks or even earlier than that).
3434
randomNumber[_block] = uint(blockhash((block.number-1) - (block.number-1-_block)%256));
3535
}

0 commit comments

Comments
 (0)