Search content
Sort by

Showing 7 of 7 results by dilonious
Post
Topic
Board Altcoin Discussion
Re: Creating ERC20 Token for fun / knowledge growth - Changing POW Algo Question
by
dilonious
on 24/01/2018, 23:41:33 UTC
I'm following this guide: https://www.ethereum.org/token

about POW here
Code:
   

 bytes32 public currentChallenge;                         // The coin starts with a challenge
    uint public timeOfLastProof;                             // Variable to keep track of when rewards were given
    uint public difficulty = 10**32;                         // Difficulty starts reasonably low

    function proofOfWork(uint nonce){
        bytes8 n = bytes8(sha3(nonce, currentChallenge));    // Generate a random hash based on input
        require(n >= bytes8(difficulty));                   // Check if it's under the difficulty

        uint timeSinceLastProof = (now - timeOfLastProof);  // Calculate time since last reward was given
        require(timeSinceLastProof >=  5 seconds);         // Rewards cannot be given too quickly
        balanceOf[msg.sender] += timeSinceLastProof / 60 seconds;  // The reward to the winner grows by the minute

        difficulty = difficulty * 10 minutes / timeSinceLastProof + 1;  // Adjusts the difficulty

        timeOfLastProof = now;                              // Reset the counter
        currentChallenge = sha3(nonce, currentChallenge, block.blockhash(block.number - 1));  // Save a hash that will be used as the next proof
    }
Post
Topic
Board Altcoin Discussion
Creating ERC20 Token for fun / knowledge growth - Changing POW Algo Question
by
dilonious
on 24/01/2018, 21:35:08 UTC
I'm creating an ERC20 token for fun and to get a better understanding of the basics.

I'd love to explore different POW algorithms as I believe in the true decentralization that GPU mining offers.

Can anyone help me with the code to implement something like equihash to an ERC20 token?

Post
Topic
Board Mining (Altcoins)
Re: Winter is coming.
by
dilonious
on 24/01/2018, 17:51:46 UTC
12 cards kept my entire house 74F while it was 30-40F.
I recently moved my mining rigs to a commercial location and am so sad to be back in my 60-68F cold ass house. 
Post
Topic
Board Mining (Altcoins)
Re: NEMOSMINER multi algo profit switching NVIDIA miner
by
dilonious
on 01/01/2018, 19:41:33 UTC
I'm running into an issue when I want to run zpool24h. Whenever nemosminer wants to update the pool data, it fails to update the data.

I have the same issue. I'm fine with just using zpool for now as the payout is probably roughly the same.
Post
Topic
Board Mining (Altcoins)
Re: NEMOSMINER multi algo profit switching NVIDIA miner
by
dilonious
on 31/12/2017, 01:00:16 UTC
adjust intensity will fix crashing.  also hard set page file to 12000

Fixed it! thank you.
Post
Topic
Board Mining (Altcoins)
Re: NEMOSMINER multi algo profit switching NVIDIA miner
by
dilonious
on 30/12/2017, 20:02:10 UTC
Read again pal.

I'm simply asking if there is a way to auto-restart nemosminer, similar to the features available on many other competitors. I'm not asking for any help with drivers or mining programs.
Post
Topic
Board Mining (Altcoins)
Re: NEMOSMINER multi algo profit switching NVIDIA miner
by
dilonious
on 30/12/2017, 19:18:05 UTC
Running zPool + windows 8.1

- It sometimes crashes my nVidia drivers when changing between algos. To combat this, I've pushed the autoswitch out to 2 hours.
-Sometimes it just crashes the mining software and then nothing is running for 2 hours.

Is there any way to have nemosminer auto restart when it crashes? I had this setup with awesome miner and it helped fix any issue. 
Or should I just setup a smart plug (tp link h110) and have it restart my computer when electrical draw drops?