Pages:
Author

Topic: [ANN] GorillaTeeth [TEETH] | 10 DAY Staking Confirmation | Good luck dumping it! - page 18. (Read 93813 times)

legendary
Activity: 1610
Merit: 1003
"Yobit pump alert software" Link in my signature!
The other thing to remember is EVERYONE should keep their wallet unlocked and staking, EVEN if you have already staked, because its NOT 10 days, its 3600 blocks for you coins to become elegible again. What Im saying is , if EVERYONE leaves their wallet open and staking those 3600 blocks WONT take 10 days, the chain  will move much faster.

Vegas
hero member
Activity: 566
Merit: 500
Which command in my wallet i have to use in wallet to stop staking and make my balance spendable?
I Dont like this 10 day waiting i want to be able sell any time.

I'm not sure that's possible once they have started staking, i know you can use the reserve balance command to make sure they don't stake in future, or set it to even a

percentage of your coins not to stake Wink
newbie
Activity: 47
Merit: 0
when will withdrawals be sorted.  ?
sr. member
Activity: 391
Merit: 250
Which command in my wallet i have to use in wallet to stop staking and make my balance spendable?
I Dont like this 10 day waiting i want to be able sell any time.
legendary
Activity: 1764
Merit: 1022
Seems that I got lucky this morning and hit a super block on my third stake.






How the fuck can you stake 3 time in a row?? I thought it takes 10 day for 1 stake??



https://github.com/iGotSpots/GorillaTeeth/blob/master/src/main.h#L42

Code:
static const int COINBASE_MATURITY_PPC = 3600;
static const int LOCKTIME_THRESHOLD = 500000000;
static const int STAKE_START_TIME = 1408636800; //                1429488000 FOR MAINNET                1408636800 FOR TESTING MAINNET
static const int STAKE_TARGET_SPACING = 240;
static const int STAKE_MIN_AGE = 60 * 60;
static const int STAKE_MAX_AGE = 60 * 60 * 24 * 366;

I received all my coins in one large chunk. (I meant to send them to myself in chunks of 50) so it took 1 hour to mature and then it staked once on 5-4-15 and that large stake split into two inputs. So both POS and POW blocks are being done so that is why it pushed through the 3600 blocks for my coins to mature on 5-7-15 and then those two inputs staked and the 2nd one hit the super block. It was 100% total luck.
legendary
Activity: 1190
Merit: 1000
Kaspa
windows wallet link in the OP doesn't seem to be working?

block 10,000 is coming up fast

EDIT just read a few pages... it's coming
legendary
Activity: 1190
Merit: 1000
Kaspa
YW, I'm wondering why I haven't found a block since I did it tho?

I've tried it as "reservebalance=xxx"

and have it as "reservebalance= xxx" right now, hopefully I find one soon... or I'll end up spending the 1 coin per transfer to break them up
hero member
Activity: 882
Merit: 1000
I've used "reservebalnce=XXX" hoping it would allow only 15 coins to stake, then I was going to do it again to allow another 15 -30 coins stake and so on... but I have yet to find a block since I did it?

thanks to the dumpers last night  Cool

god thanks for that post i totally forgot i put in that conf file too. sitting here wondering why i don't stake anymore.  Cheesy
legendary
Activity: 1190
Merit: 1000
Kaspa
I've used "reservebalnce=XXX" hoping it would allow only 15 coins to stake, then I was going to do it again to allow another 15 -30 coins stake and so on... but I have yet to find a block since I did it?

thanks to the dumpers last night  Cool
legendary
Activity: 1624
Merit: 1007
Seems that I got lucky this morning and hit a super block on my third stake.






How the fuck can you stake 3 time in a row?? I thought it takes 10 day for 1 stake??

Easy guess would be. Dont keep all your coins in one block and stake them and different times.
Feels kind of stupid not to divide it into chunks with the reward system it has now.
sr. member
Activity: 316
Merit: 250
Crypterium - Digital Mobile Cryptobank For Everyon
Seems that I got lucky this morning and hit a super block on my third stake.






How the fuck can you stake 3 time in a row?? I thought it takes 10 day for 1 stake??
newbie
Activity: 34
Merit: 0
I have an issue where I sent the entire balance of Snowballs from my wallet on my local machine over to my Snowballs 4 address on btcpool.exchange before 2 May 2015. However, the coins never showed up, even though I could see the tx on the Snowballs explorer. I put in a ticket at btcpool.exchange a few hours later but haven't heard back from them (and its been several days). Now, when I try to view the tx on the explorer I get nothing but a blank webpage.

My questions are:
Did I miss the Snowballs to TEETH swap since my deposit never showed up?
Who should I contact beyond the ticket system at btcpool.exchange to get this looked at? Do the Snowballs devs have any abilities to resole this sort of an issue?

Thanks in advance,
Cyberian Forest
sr. member
Activity: 471
Merit: 500
still no withdraws for gorilla.exchange, how much longer till we can withdraw?
legendary
Activity: 1554
Merit: 1001
So on block 99 & 100 were they superblocks or just blank superblocks until distribution ?

What I'm trying to say is from the very start block 0, every 99th and 100th block e.g 10499 & 10500 will be 6480% blocks ?

https://github.com/iGotSpots/GorillaTeeth/blob/master/src/main.cpp#L841

Code:
int64 GetProofOfStakeRewardYear(int nHeight) {
static int64 nBaseCoinYear = 10000 * CENT;
static int64 nMaxPercent = 100;
static int64 nReward = 0;
if (nHeight % 100 <= 1) {
nReward = 6480;
} else {
nReward = 8;
    }
    return nReward * CENT;
    }

Blocks 0 and 1 and every block that ends with a 00 or a 01 gets a super block.


Cool thanks for explaining  Smiley
legendary
Activity: 1764
Merit: 1022
So on block 99 & 100 were they superblocks or just blank superblocks until distribution ?

What I'm trying to say is from the very start block 0, every 99th and 100th block e.g 10499 & 10500 will be 6480% blocks ?

https://github.com/iGotSpots/GorillaTeeth/blob/master/src/main.cpp#L841

Code:
int64 GetProofOfStakeRewardYear(int nHeight) {
static int64 nBaseCoinYear = 10000 * CENT;
static int64 nMaxPercent = 100;
static int64 nReward = 0;
if (nHeight % 100 <= 1) {
nReward = 6480;
} else {
nReward = 8;
    }
    return nReward * CENT;
    }

Blocks 0 and 1 and every block that ends with a 00 or a 01 gets a super block.
hero member
Activity: 882
Merit: 1000
how many blocks till i can stake again?
3600

thanks, if my last stake was at block 4586 i should be staking again already right?
4586 + 3600 = 8186  and we are at 8611

 what is block time again specs are no longer in the op
legendary
Activity: 1162
Merit: 1000
still disabled Wd from gorilla exchange ?
legendary
Activity: 1573
Merit: 1057
how many blocks till i can stake again?
3600

thanks, if my last stake was at block 4586 i should be staking again already right?
4586 + 3600 = 8186  and we are at 8611
legendary
Activity: 1638
Merit: 1013
how many blocks till i can stake again?
3600

thanks, if my last stake was at block 4586 i should be staking again already right?

Is it not so that your main coins are primed again for staking after 1 hour, but it is just the stake that takes 3600 blocks to become available and eligible for staking? Once the 3600 blocks are over the stake becomes part of your main coins that mature again 1 hour after hitting a stake.
hero member
Activity: 882
Merit: 1000
how many blocks till i can stake again?
3600

thanks, if my last stake was at block 4586 i should be staking again already right?
Pages:
Jump to: