Bitcoin Forum
May 04, 2024, 06:40:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
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 27 28 29 30 31 32 33 34 35 36 37 »
  Print  
Author Topic: [ANN] The Game of [̲̅$̲̅(̲̅ιoo̲̅)̲̅$̲̅] GREED [̲̅$̲̅(̲̅ιoo̲̅)̲̅$̲̅]  (Read 42877 times)
Greed Dev (OP)
Member
**
Offline Offline

Activity: 490
Merit: 10


View Profile
May 21, 2015, 09:57:35 PM
 #161

Nice. Gotta love when dev is asking about how blockchain works.  Good sign?  Wink

I just want to make sure the right decision is made and agreed upon before moving forward.

Would it be better for us to just lower:

Code:
unsigned int nStakeMinAge = 8 * 60 * 60; // 8 hours

Might as well also add in a checkpoint at block 2090.

───────────────    IMO Ecosystem    ───────────────
Customer First, Innovation from Everyone, Fair & Transparent
TELEGRAM  ]              J O I N   U S              [   TWITTER   ]
1714848025
Hero Member
*
Offline Offline

Posts: 1714848025

View Profile Personal Message (Offline)

Ignore
1714848025
Reply with quote  #2

1714848025
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714848025
Hero Member
*
Offline Offline

Posts: 1714848025

View Profile Personal Message (Offline)

Ignore
1714848025
Reply with quote  #2

1714848025
Report to moderator
1714848025
Hero Member
*
Offline Offline

Posts: 1714848025

View Profile Personal Message (Offline)

Ignore
1714848025
Reply with quote  #2

1714848025
Report to moderator
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
May 21, 2015, 09:58:34 PM
 #162

fees lowered, stratum shut on suprnova.
please dont forget to withdraw and thanks for mining with suprnova

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
whatdidshedo
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


View Profile
May 21, 2015, 09:58:41 PM
 #163

yeah a few hours wont solve it. it may be written in minutes or hours. but ultimately the blockchain judges time by blocks. a stalled chain sees no time pass. coins dont mature unless the chains moving.

it's what i said to him 120 blocks to confirm ...and i don't even know code lol(but seen this before on other coins)

Suleiman the Magnificent
Full Member
***
Offline Offline

Activity: 504
Merit: 120


View Profile WWW
May 21, 2015, 10:01:25 PM
 #164

fees lowered, stratum shut on suprnova.
please dont forget to withdraw and thanks for mining with suprnova


I have 0.08 Cheesy Please lower withdrawal or my greed lose!
hack_
Hero Member
*****
Offline Offline

Activity: 501
Merit: 501


View Profile
May 21, 2015, 10:02:21 PM
 #165

Well.. I apologize this was as oversight. I moved the few coins to be used for staking roughly 6.5 hrs ago. I misjudged how much time was left. I've been using the rest to do the twitter promo so it hasn't matured.

This means we will have to wait for coins to start maturing for the blockchain to resume.. Maybe 2 hours It seems.. As we are stuck at 2090.

Things should resume fine when that happens though. Don't go and panic or anything. Smiley

but it takes 120 blocks to confirm so who will move it 30 pos blocks? can your wallet do that?

I have coins that have been confirmed but not matured. I have also sent some out via twitter that I know are in wallets.

What we need to get past is this

Code:
unsigned int nStakeMinAge = 8 * 60 * 60; // 8 hours

Can we accomplish that without a moving blockchain?

If not I will have to edit this it seems:

Code:
static const int LAST_POW_BLOCK = 2090;

You have to be very careful with this fork.

Option 1) is not viable to change, i'd explain why , but just know that it makes wallets unstable after a few hundred stakes, that is why 8 hours is the established minimum.

Option 2) Changing the last PoW block # without zeroing the reward will lead to increase in money supply.

So what you need to do is change
Code:
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 1 * COIN;
 


    if(pindexBest->nHeight < 2)
    {
        nSubsidy = 5 * COIN;
    }
        else if(pindexBest->nHeight < 2000)
    {
        nSubsidy = 0 * COIN;
    }
        else if(pindexBest->nHeight < 2091)
    {
        nSubsidy = 1 * COIN;
    }

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);

    return nSubsidy + nFees;
}


to
Code:
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 1 * COIN;

    if(pindexBest->nHeight > 2090)
    {
        nSubsidy = 0 * COIN;
    }
 
    if(pindexBest->nHeight < 2)
    {
        nSubsidy = 5 * COIN;
    }
        else if(pindexBest->nHeight < 2000)
    {
        nSubsidy = 0 * COIN;
    }
        else if(pindexBest->nHeight < 2091)
    {
        nSubsidy = 1 * COIN;
    }

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);

    return nSubsidy + nFees;
}


Then change the last PoW block to 3000 or above, this creates a large enough pool of mature inputs for PoS to take over.

hack_
Hero Member
*****
Offline Offline

Activity: 501
Merit: 501


View Profile
May 21, 2015, 10:03:59 PM
 #166

Nice. Gotta love when dev is asking about how blockchain works.  Good sign?  Wink

I just want to make sure the right decision is made and agreed upon before moving forward.

Would it be better for us to just lower:

Code:
unsigned int nStakeMinAge = 8 * 60 * 60; // 8 hours

Might as well also add in a checkpoint at block 2090.

lowering stake age across clients and inputs could be disastrous, follow the advice in my previous post. If you are unsure, just say so and i'll submit a pull request on github.
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
May 21, 2015, 10:04:56 PM
 #167

fees lowered, stratum shut on suprnova.
please dont forget to withdraw and thanks for mining with suprnova


I have 0.08 Cheesy Please lower withdrawal or my greed lose!

Lol i have lowered to 0.0001 already.. Smiley

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
Greed Dev (OP)
Member
**
Offline Offline

Activity: 490
Merit: 10


View Profile
May 21, 2015, 10:05:42 PM
 #168

Nice. Gotta love when dev is asking about how blockchain works.  Good sign?  Wink

I just want to make sure the right decision is made and agreed upon before moving forward.

Would it be better for us to just lower:

Code:
unsigned int nStakeMinAge = 8 * 60 * 60; // 8 hours

Might as well also add in a checkpoint at block 2090.

lowering stake age across clients and inputs could be disastrous, follow the advice in my previous post. If you are unsure, just say so and i'll submit a pull request on github.

Thank you for the confirmation. That fix makes sense, will get to it now.

───────────────    IMO Ecosystem    ───────────────
Customer First, Innovation from Everyone, Fair & Transparent
TELEGRAM  ]              J O I N   U S              [   TWITTER   ]
nikkers
Hero Member
*****
Offline Offline

Activity: 566
Merit: 500



View Profile
May 21, 2015, 10:16:01 PM
 #169

fees lowered, stratum shut on suprnova.
please dont forget to withdraw and thanks for mining with suprnova


I have 0.08 Cheesy Please lower withdrawal or my greed lose!

Lol i have lowered to 0.0001 already.. Smiley

it seems the minimum withdrawal is set at 0.1 can you please sort it ocminer?
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
May 21, 2015, 10:24:08 PM
 #170

fees lowered, stratum shut on suprnova.
please dont forget to withdraw and thanks for mining with suprnova


I have 0.08 Cheesy Please lower withdrawal or my greed lose!

Lol i have lowered to 0.0001 already.. Smiley

it seems the minimum withdrawal is set at 0.1 can you please sort it ocminer?

ok lowered too, but the chain is stuck, we'll need an update

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
nikkers
Hero Member
*****
Offline Offline

Activity: 566
Merit: 500



View Profile
May 21, 2015, 10:25:25 PM
 #171

fees lowered, stratum shut on suprnova.
please dont forget to withdraw and thanks for mining with suprnova


I have 0.08 Cheesy Please lower withdrawal or my greed lose!

Lol i have lowered to 0.0001 already.. Smiley

it seems the minimum withdrawal is set at 0.1 can you please sort it ocminer?

ok lowered too, but the chain is stuck, we'll need an update

Thanks man, at least we know it's ready to go when the chain gets going Cheesy
kampretkabur
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


View Profile
May 21, 2015, 10:28:08 PM
 #172

damn, so its done?
Greed Dev (OP)
Member
**
Offline Offline

Activity: 490
Merit: 10


View Profile
May 21, 2015, 10:28:45 PM
 #173

Wallet is done and appears to be working fine. Seed node is compiling. Once that finishes up if there are no issues I will release the new wallet (with checkpoint at 2090), and pools can update. Then all should be good.

Edit*

Seed node has been updated successfully.

Please update to the latest wallet!

HERE is the new wallet. Don't go deleting your roaming stuff. Just close the wallet, delete the qt, download the new one, and open it.

HERE is the new source. TY in advance pool OP's for updating.

This should fix the hiccup, and checkpoint block 2090 at the same time.

───────────────    IMO Ecosystem    ───────────────
Customer First, Innovation from Everyone, Fair & Transparent
TELEGRAM  ]              J O I N   U S              [   TWITTER   ]
hack_
Hero Member
*****
Offline Offline

Activity: 501
Merit: 501


View Profile
May 21, 2015, 10:36:23 PM
 #174

Wallet is done and appears to be working fine. Seed node is compiling. Once that finishes up if there are no issues I will release the new wallet (with checkpoint at 2090), and pools can update. Then all should be good.

good good, now, greed!!!

FTdMHevxnyuobZoH9c4QLgBsEDh3LzHiLt

you may want to add stuff like internal block explorer and richlist.
Greed Dev (OP)
Member
**
Offline Offline

Activity: 490
Merit: 10


View Profile
May 21, 2015, 10:37:00 PM
 #175

Quoting for new page visibility.

Wallet is done and appears to be working fine. Seed node is compiling. Once that finishes up if there are no issues I will release the new wallet (with checkpoint at 2090), and pools can update. Then all should be good.

Edit*

Seed node has been updated successfully.

Please update to the latest wallet!

HERE is the new wallet. Don't go deleting your roaming stuff. Just close the wallet, delete the qt, download the new one, and open it.

HERE is the new source. TY in advance pool OP's for updating.

This should fix the hiccup, and checkpoint block 2090 at the same time.

───────────────    IMO Ecosystem    ───────────────
Customer First, Innovation from Everyone, Fair & Transparent
TELEGRAM  ]              J O I N   U S              [   TWITTER   ]
dukeneptun
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000


View Profile
May 21, 2015, 10:38:18 PM
 #176

Block explorer would be fine. sir
pizza77
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
May 21, 2015, 10:39:40 PM
 #177

Block explorer would be fine. sir

You will need a block explorer to get onto an exchange.
whatdidshedo
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


View Profile
May 21, 2015, 10:49:23 PM
 #178

ok ran new wallet has connections like 5-6 but says out of sync, should i delete all but wallet.dat and re-sync or ?

jambo110
Legendary
*
Offline Offline

Activity: 1311
Merit: 1003



View Profile
May 21, 2015, 10:50:35 PM
 #179

ok ran new wallet has connections like 5-6 but says out of sync, should i delete all but wallet.dat and re-sync or ?
you check that for viruses ?

dev was awfully quick to post links after everyone bailed.
andrepierre
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500



View Profile
May 21, 2015, 10:51:18 PM
 #180

ok ran new wallet has connections like 5-6 but says out of sync, should i delete all but wallet.dat and re-sync or ?
you check that for viruses ?

dev was awfully quick to post links after everyone bailed.

According to me it is clean, I use McAfee
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 27 28 29 30 31 32 33 34 35 36 37 »
  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!