Bitcoin Forum
July 05, 2024, 07:31:20 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 »
  Print  
Author Topic: [ANN][NANAS] BananaBits - Home of the 1-Click Masternode! Scrypt NINJA  (Read 38084 times)
BillyBones
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
June 04, 2015, 06:19:24 AM
 #61

1-clik masternode...sweet.

I also like the name. Huge hashrate.

Ok
 I´m in.
BlackPanda
Legendary
*
Offline Offline

Activity: 1414
Merit: 1001



View Profile
June 04, 2015, 06:37:33 AM
 #62

hey dev , do you have planning for NANAS ? or just Mine > stake > sell > Buy > dead ?
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
June 04, 2015, 07:22:32 AM
Last edit: June 04, 2015, 07:43:46 AM by iGotSpots
 #63

To have the parameters as mentioned in the OP, you have an error in one of the two bolded lines

Quote
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 325 * COIN;

    if(nHeight < 950)
    {
        nSubsidy = 325 * COIN;
    }
    else if(nHeight < 1400)
    {
        nSubsidy = 225 * COIN;
    }
    else if(nHeight < 1900)
    {
        nSubsidy = 212 * COIN;
    }
    else if(nHeight < 2400)
    {
        nSubsidy =  162 * COIN;
    }
    else if(nHeight < 2850)
    {
        nSubsidy = 126 * COIN;
    }
    else if(nHeight < 3500)
    {
        nSubsidy = 95 * COIN;
    }
   else if(nHeight < 4000)
   {
        nSubsidy = 52 * COIN;
    }

    return nSubsidy + nFees;
}

proletariat
Legendary
*
Offline Offline

Activity: 1246
Merit: 1005



View Profile
June 04, 2015, 07:24:03 AM
 #64


on the one click setup i get the following message "The local external IP is not yet detected. Please try again in a few minutes."

Dev: help.

BillyBones
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
June 04, 2015, 07:41:59 AM
 #65

To have the parameters as mentioned in the OP, you have an error in the bolded line

Quote
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 325 * COIN;

    if(nHeight < 950)
    {
        nSubsidy = 325 * COIN;
    }
    else if(nHeight < 1400)
    {
        nSubsidy = 225 * COIN;
    }
    else if(nHeight < 1900)
    {
        nSubsidy = 212 * COIN;
    }
    else if(nHeight < 2400)
    {
        nSubsidy =  162 * COIN;
    }
    else if(nHeight < 2850)
    {
        nSubsidy = 126 * COIN;
    }
    else if(nHeight < 3500)
    {
        nSubsidy = 95 * COIN;
    }
    else if(nHeight < 4000)
    {
        nSubsidy = 52 * COIN;
    }

    return nSubsidy + nFees;
}

It looks like typo in OP.
pjcltd
Legendary
*
Offline Offline

Activity: 1778
Merit: 1003

NodeMasters


View Profile WWW
June 04, 2015, 07:44:28 AM
 #66

To have the parameters as mentioned in the OP, you have an error in the bolded line

Quote
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 325 * COIN;

    if(nHeight < 950)
    {
        nSubsidy = 325 * COIN;
    }
    else if(nHeight < 1400)
    {
        nSubsidy = 225 * COIN;
    }
    else if(nHeight < 1900)
    {
        nSubsidy = 212 * COIN;
    }
    else if(nHeight < 2400)
    {
        nSubsidy =  162 * COIN;
    }
    else if(nHeight < 2850)
    {
        nSubsidy = 126 * COIN;
    }
    else if(nHeight < 3500)
    {
        nSubsidy = 95 * COIN;
    }
    else if(nHeight < 4000)
    {
        nSubsidy = 52 * COIN;
    }

    return nSubsidy + nFees;
}

It looks like typo in OP.
no its need to be
    else if(nHeight > 4000)
 
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
June 04, 2015, 07:45:46 AM
 #67

To have the parameters as mentioned in the OP, you have an error in the bolded line

Quote
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 325 * COIN;

    if(nHeight < 950)
    {
        nSubsidy = 325 * COIN;
    }
    else if(nHeight < 1400)
    {
        nSubsidy = 225 * COIN;
    }
    else if(nHeight < 1900)
    {
        nSubsidy = 212 * COIN;
    }
    else if(nHeight < 2400)
    {
        nSubsidy =  162 * COIN;
    }
    else if(nHeight < 2850)
    {
        nSubsidy = 126 * COIN;
    }
    else if(nHeight < 3500)
    {
        nSubsidy = 95 * COIN;
    }
    else if(nHeight < 4000)
    {
        nSubsidy = 52 * COIN;
    }

    return nSubsidy + nFees;
}

It looks like typo in OP.
no its need to be
    else if(nHeight > 4000)
 


Correct, or the top bolded line could be changed to whatever the reward should be after block 4000. The whole reward system is sloppy, but those two options will work as a bandaid

BillyBones
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
June 04, 2015, 07:48:14 AM
 #68

Ahh, now i see. You are right guys.... still time to fix.
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
June 04, 2015, 07:49:44 AM
 #69

Ahh, now i see. You are right guys.... still time to fix.

Correct. We liked the name and were reviewing the code to add it to GorillaEx, but there is an error

kampretkabur
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


View Profile
June 04, 2015, 07:51:04 AM
 #70

To have the parameters as mentioned in the OP, you have an error in one of the two bolded lines

Quote
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 325 * COIN;

    if(nHeight < 950)
    {
        nSubsidy = 325 * COIN;
    }
    else if(nHeight < 1400)
    {
        nSubsidy = 225 * COIN;
    }
    else if(nHeight < 1900)
    {
        nSubsidy = 212 * COIN;
    }
    else if(nHeight < 2400)
    {
        nSubsidy =  162 * COIN;
    }
    else if(nHeight < 2850)
    {
        nSubsidy = 126 * COIN;
    }
    else if(nHeight < 3500)
    {
        nSubsidy = 95 * COIN;
    }
   else if(nHeight < 4000)
   {
        nSubsidy = 52 * COIN;
    }

    return nSubsidy + nFees;
}

where can i see this
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
June 04, 2015, 07:52:24 AM
 #71

https://github.com/bananabits/bananabits/blob/master/src/main.cpp#L1158

BlackPanda
Legendary
*
Offline Offline

Activity: 1414
Merit: 1001



View Profile
June 04, 2015, 07:53:02 AM
 #72

To have the parameters as mentioned in the OP, you have an error in one of the two bolded lines

Quote
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 325 * COIN;

    if(nHeight < 950)
    {
        nSubsidy = 325 * COIN;
    }
    else if(nHeight < 1400)
    {
        nSubsidy = 225 * COIN;
    }
    else if(nHeight < 1900)
    {
        nSubsidy = 212 * COIN;
    }
    else if(nHeight < 2400)
    {
        nSubsidy =  162 * COIN;
    }
    else if(nHeight < 2850)
    {
        nSubsidy = 126 * COIN;
    }
    else if(nHeight < 3500)
    {
        nSubsidy = 95 * COIN;
    }
   else if(nHeight < 4000)
   {
        nSubsidy = 52 * COIN;
    }

    return nSubsidy + nFees;
}

where can i see this

you can see on your heart . relax and you can find it
kampretkabur
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


View Profile
June 04, 2015, 07:54:44 AM
 #73

To have the parameters as mentioned in the OP, you have an error in one of the two bolded lines

Quote
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 325 * COIN;

    if(nHeight < 950)
    {
        nSubsidy = 325 * COIN;
    }
    else if(nHeight < 1400)
    {
        nSubsidy = 225 * COIN;
    }
    else if(nHeight < 1900)
    {
        nSubsidy = 212 * COIN;
    }
    else if(nHeight < 2400)
    {
        nSubsidy =  162 * COIN;
    }
    else if(nHeight < 2850)
    {
        nSubsidy = 126 * COIN;
    }
    else if(nHeight < 3500)
    {
        nSubsidy = 95 * COIN;
    }
   else if(nHeight < 4000)
   {
        nSubsidy = 52 * COIN;
    }

    return nSubsidy + nFees;
}

where can i see this

you can see on your heart . relax and you can find it
damn, thanks anyway
NoobKidOnTheBlock
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


FLY DONATION ADDRESS IN SIGNATURE


View Profile
June 04, 2015, 10:04:14 AM
 #74

Any exchange soon enough?

Thanks


Holy Super Rookie account posting exact same message in the two ninja launched masternode POS coins launched today lmfao

EDIT - total sockpuppet account for someone date registered aug 2014 but only 2 posts EVER and they are both in the 2 coins I mentioned lmfao wow

 

▇▇▇

▇▇


▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇▇
...
............NoobKidOnThe.BLOCK.....
 
max2000irc
Hero Member
*****
Offline Offline

Activity: 527
Merit: 501


View Profile
June 04, 2015, 10:07:31 AM
 #75

I didn't read other posts , I am interested in buying not in selling , so any offers you may have just pm me.

Thanks

NoobKidOnTheBlock
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


FLY DONATION ADDRESS IN SIGNATURE


View Profile
June 04, 2015, 10:09:26 AM
 #76

I didn't read other posts , I am interested in buying not in selling , so any offers you may have just pm me.

Thanks


OK I'll sell you NANAS and ARPA mate Smiley PM what you want to pay for them then Smiley

 

▇▇▇

▇▇


▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇▇
...
............NoobKidOnThe.BLOCK.....
 
MineDumpNextOne
Member
**
Offline Offline

Activity: 281
Merit: 10


View Profile
June 04, 2015, 10:12:37 AM
 #77

WTS 8750 NANAS
ltcrstrbrt
Legendary
*
Offline Offline

Activity: 1568
Merit: 1057



View Profile
June 04, 2015, 10:58:43 AM
 #78

WTS 8750 NANAS
Price?
MineDumpNextOne
Member
**
Offline Offline

Activity: 281
Merit: 10


View Profile
June 04, 2015, 10:59:04 AM
 #79


to PM
ltcrstrbrt
Legendary
*
Offline Offline

Activity: 1568
Merit: 1057



View Profile
June 04, 2015, 11:01:47 AM
 #80

I'm waiting
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!