Pages:
Author

Topic: [ANN] NODECOIN [ND] - Masternodes - page 8. (Read 6405 times)

hero member
Activity: 2100
Merit: 618
January 01, 2018, 09:06:16 AM
Hope so but there no interest from miners..

if there will be airdrop, anyway I will start doing some tests for an update. mining will stop for a few hours, I will keep you informed here, until you see that everything is going well, no currency will be sold, the goal is not to defraud any user

you clearly don't know how blockchain works if you think you can stop all mining for a few hours by declaration

It is my duty to verify the complaints of some users if they are true or not

my duty is to try to observe if what some user has informed me is true or not, for the welfare of future investors
full member
Activity: 364
Merit: 100
January 01, 2018, 09:06:07 AM
thanks for the understanding, I have stopped the nodes, therefore the mining, until I finish doing tests

the nodes are still running, mining is still running.  what kind of tests are you doing?
hero member
Activity: 2100
Merit: 618
January 01, 2018, 09:04:03 AM
Hope so but there no interest from miners..

if there will be airdrop, anyway I will start doing some tests for an update. mining will stop for a few hours, I will keep you informed here, until you see that everything is going well, no currency will be sold, the goal is not to defraud any user

that's great news ,i will keep watching update news,hope can take part in this project later.

thanks for the understanding, I have stopped the nodes, therefore the mining, until I finish doing tests
full member
Activity: 364
Merit: 100
January 01, 2018, 09:03:05 AM
Hope so but there no interest from miners..

if there will be airdrop, anyway I will start doing some tests for an update. mining will stop for a few hours, I will keep you informed here, until you see that everything is going well, no currency will be sold, the goal is not to defraud any user

you clearly don't know how blockchain works if you think you can stop all mining for a few hours by declaration
full member
Activity: 376
Merit: 100
January 01, 2018, 09:00:33 AM
Hope so but there no interest from miners..

if there will be airdrop, anyway I will start doing some tests for an update. mining will stop for a few hours, I will keep you informed here, until you see that everything is going well, no currency will be sold, the goal is not to defraud any user

that's great news ,i will keep watching update news,hope can take part in this project later.
hero member
Activity: 2100
Merit: 618
January 01, 2018, 08:54:31 AM
Hope so but there no interest from miners..

if there will be airdrop, anyway I will start doing some tests for an update. mining will stop for a few hours, I will keep you informed here, until you see that everything is going well, no currency will be sold, the goal is not to defraud any user
member
Activity: 84
Merit: 10
January 01, 2018, 08:49:44 AM
Hope so but there no interest from miners..
full member
Activity: 625
Merit: 125
January 01, 2018, 08:47:47 AM
I'm interested in the MN. I've downloaded the wallet and will wait for further announcement from OP.
Will there be an airdrop?
newbie
Activity: 154
Merit: 0
January 01, 2018, 08:47:05 AM
NODECOIN (ND) is available at tiny-pool.com
tiny-pool.com

Code:
-a skein -o stratum+tcp://tiny-pool.com:4933 -u -c=ND

Promotional Offer !!!
No Fees
Low latency
Multi core, multi threads for higher performance
No Registration required.
hero member
Activity: 2100
Merit: 618
January 01, 2018, 08:42:33 AM
dev, this don't work.  fix immediately or quit

// miner's coin stake reward
int64_t GetProofOfStakeReward(const CBlockIndex* pindexPrev, int64_t nCoinAge, int64_t nFees)
{
    int64_t nSubsidy = 0;

    if (pindexBest->nHeight+1 > 400 && pindexBest->nHeight+1 <= 10000) {
        nSubsidy = 10 * COIN;
    }
    else if (pindexBest->nHeight+1 > 10000 && pindexBest->nHeight+1 <= 30000)  {
        nSubsidy = 12 * COIN;
    }
    else if (pindexBest->nHeight+1 > 30000 && pindexBest->nHeight+1 <= 50000)  {
        nSubsidy = 13 * COIN;
    }
    else if (pindexBest->nHeight+1 > 50000 && pindexBest->nHeight+1 <= 70000) {
        nSubsidy = 14 * COIN;
    }
    else if (pindexBest->nHeight+1 > 70000 && pindexBest->nHeight+1 <= 100000) {
        nSubsidy = 15 * COIN;
    }
        else if (pindexBest->nHeight+1 > 100000 && pindexBest->nHeight+1 <= 200000) {
        nSubsidy = 10 * COIN;
    }
    else if (pindexBest->nHeight+1 > 200000) {
        nSubsidy = 8 * COIN;
    }
       
    return nSubsidy + nFees;
}



What does not work, could you be more specific?

I inform you that I will stop the nodes to do some tests because I need to corroborate some user complaints if they are true or not
full member
Activity: 364
Merit: 100
January 01, 2018, 08:24:44 AM
dev, this don't work.  fix immediately or quit

// miner's coin stake reward
int64_t GetProofOfStakeReward(const CBlockIndex* pindexPrev, int64_t nCoinAge, int64_t nFees)
{
    int64_t nSubsidy = 0;

    if (pindexBest->nHeight+1 > 400 && pindexBest->nHeight+1 <= 10000) {
        nSubsidy = 10 * COIN;
    }
    else if (pindexBest->nHeight+1 > 10000 && pindexBest->nHeight+1 <= 30000)  {
        nSubsidy = 12 * COIN;
    }
    else if (pindexBest->nHeight+1 > 30000 && pindexBest->nHeight+1 <= 50000)  {
        nSubsidy = 13 * COIN;
    }
    else if (pindexBest->nHeight+1 > 50000 && pindexBest->nHeight+1 <= 70000) {
        nSubsidy = 14 * COIN;
    }
    else if (pindexBest->nHeight+1 > 70000 && pindexBest->nHeight+1 <= 100000) {
        nSubsidy = 15 * COIN;
    }
        else if (pindexBest->nHeight+1 > 100000 && pindexBest->nHeight+1 <= 200000) {
        nSubsidy = 10 * COIN;
    }
    else if (pindexBest->nHeight+1 > 200000) {
        nSubsidy = 8 * COIN;
    }
       
    return nSubsidy + nFees;
}

full member
Activity: 154
Merit: 100
January 01, 2018, 08:23:03 AM
Pos broken, did not activate at 400
newbie
Activity: 58
Merit: 0
January 01, 2018, 08:19:22 AM
the RPCport and user and pass are whatever you set it as in your conf file
how can i solo mining with miningrigrental? can you help me?
full member
Activity: 210
Merit: 101
January 01, 2018, 07:56:17 AM
Is this algorithm for ASIC or GPU?
full member
Activity: 364
Merit: 100
January 01, 2018, 07:48:24 AM
Dev, when does pos start? op says block 400 and it's block 425 now
LsL
member
Activity: 140
Merit: 40
January 01, 2018, 07:45:12 AM
i didnt use pools. solo only...
Could you share a .bat file of yours with example of ip usage for solo mining?

ccminer -a skein -o localhost:4433 -u X -p Q

I'm using the parameters from nodecoin.conf:
Code:
ccminer.exe -a skein -o 127.0.0.1:29116 -u mywalletaddress -p mypassword

Is that wrong?

if you want your bat to look like that, your conf file should look like this then
gen=1
server=1
listen=1
daemon=1
rpcuser=mywalletaddress
rpcpassword=mypassword
rpcallowip=127.0.0.1
rpcallowip=localhost
rpcport=29116
port=12345

I can`t get it work... Sad
any help highly appreciated pls

BTW happy new year Smiley

miner msg: HTTP request failed:  HTTP request failed: Failed to connect to 127.0.0.1 port 29116: Connection refused
full member
Activity: 364
Merit: 100
January 01, 2018, 07:28:06 AM
the RPCport and user and pass are whatever you set it as in your conf file
sr. member
Activity: 644
Merit: 272
January 01, 2018, 07:26:17 AM
i didnt use pools. solo only...
Could you share a .bat file of yours with example of ip usage for solo mining?

ccminer -a skein -o localhost:4433 -u X -p Q

I'm using the parameters from nodecoin.conf:
Code:
ccminer.exe -a skein -o 127.0.0.1:29116 -u mywalletaddress -p mypassword

Is that wrong?

if you want your bat to look like that, your conf file should look like this then
gen=1
server=1
listen=1
daemon=1
rpcuser=mywalletaddress
rpcpassword=mypassword
rpcallowip=127.0.0.1
rpcallowip=localhost
rpcport=29116
port=12345


It does except for port=12345. I don't have that.
member
Activity: 84
Merit: 10
January 01, 2018, 07:23:28 AM
DEV !!
full member
Activity: 364
Merit: 100
January 01, 2018, 07:19:50 AM
i didnt use pools. solo only...
Could you share a .bat file of yours with example of ip usage for solo mining?

ccminer -a skein -o localhost:4433 -u X -p Q

I'm using the parameters from nodecoin.conf:
Code:
ccminer.exe -a skein -o 127.0.0.1:29116 -u mywalletaddress -p mypassword

Is that wrong?

if you want your bat to look like that, your conf file should look like this then
gen=1
server=1
listen=1
daemon=1
rpcuser=mywalletaddress
rpcpassword=mypassword
rpcallowip=127.0.0.1
rpcallowip=localhost
rpcport=29116
port=12345
Pages:
Jump to: