Bitcoin Forum
May 28, 2024, 05:18:57 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 38 39 40 41 42 43 44 45 46 47 48 49 50 [51] 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 »
1001  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PLEB] Plebeian | X13 PoW + PoS | Fair Launch w/ Pools + Now Mining! on: August 10, 2014, 02:59:22 AM
nevermind, i see we already got  SCREWED

i had  more then 30k coins mined and send them to my wallet, and theres only 1500 coins in my wallet?

or will this be corrected when the code is fixed?

You will get your coins. The chain is going to be nova from what I've heard.

In other words, you are not screwed.
1002  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PLEB] Plebeian | X13 PoW + PoS | Fair Launch w/ Pools + Now Mining! on: August 10, 2014, 02:51:48 AM


To make this correct ^, you need:

Code:
         int64_t nSubsidy = 0;
        if(pindexBest->nHeight == 1)
    {
        nSubsidy = 462586 * COIN;
    }
                else if(pindexBest->nHeight > 1 && pindexBest->nHeight <= 5400)
    {
                nSubsidy = 4200 * COIN;
    }

Notice the "0" instead of "100 * COIN".
1003  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PLEB] Plebeian | X13 PoW + PoS | Fair Launch w/ Pools + Now Mining! on: August 10, 2014, 02:49:35 AM
I made a small mistake with the code, the correct new code is:



Code:
     if(pindexBest->nHeight == 1)
    {
        nSubsidy = 462586 * COIN;
    }
                else if(pindexBest->nHeight > 1 && pindexBest->nHeight <= 5400)
    {
                nSubsidy = 4200 * COIN;
    }

(Notice the == instead of <)

That makes the final code this:

Code:
         int64_t nSubsidy = 100 * COIN;
        if(pindexBest->nHeight == 1)
    {
        nSubsidy = 462586 * COIN;
    }
                else if(pindexBest->nHeight > 1 && pindexBest->nHeight <= 5400)
    {
                nSubsidy = 4200 * COIN;
    }

That makes the block subsidy 100 PLEB after 5400 blocks, forever. That is, there is no limit to the money supply.

 Huh
1004  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PLEB] Plebeian | X13 PoW + PoS | Fair Launch w/ Pools + Now Mining! on: August 10, 2014, 12:30:30 AM
Mining this coin will profit only electric company who will send me bill at end of month and Dev who will dump his coins.

Aaaaaannnnndddddd.

Derp.
1005  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 09, 2014, 09:19:20 PM
my coins finally matured after 9 days.

can someone explain the 15 day cap?  can i keep my wallet open all the time?  or do i need to close and re-open it after 15 days to maximize minting?

That's strange because my coins minted after 5 days.

The 66's and the 27's should be the same chain of mints:




1006  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PLEB] Plebeian | X13 PoW + PoS | Fair Launch w/ Pools + Now Mining! on: August 09, 2014, 07:53:39 PM
Hey,is there a wallet update or something? my wallet works fine and connects to all nodes but I didnt receive my transaction since 30 minutes from now! Im mining at suprnova pool and everything works as usual except I didnt receivve my payments yet how long does it take?

Nova might be on a fork. My current block says 801. I believe that's going to be the chain.

Dev is MIA. I have his skype, so I'm trying to get in touch.
1007  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PLEB] Plebeian | X13 PoW + PoS | Fair Launch w/ Pools + Now Mining! on: August 09, 2014, 07:50:38 PM

Code:
    int64_t nSubsidy = 100 * COIN;
if(pindexBest->nHeight < 1)
    {
        nSubsidy = 462586 * COIN;
    }
else if(pindexBest->nHeight < 420)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 476)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 5400)
{
nSubsidy = 0 * COIN;
}

So there is 0 block reward between blocks 477 and 5399. So no one is hashing.

It doesn't matter, though, because PoS is carrying the chain.

Maybe we can get the dev to change the default reward to 0, and cap the PoW money at 2.5 MM.


1008  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PLEB] Plebeian | X13 PoW + PoS | Fair Launch w/ Pools + Now Mining! on: August 09, 2014, 09:33:57 AM
pool.mn is up

It's bullshit that you can't advertise.
1009  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PLEB] Plebeian | X13 PoW + PoS | Fair Launch w/ Pools + Now Mining! on: August 09, 2014, 09:30:21 AM

And a real mac wallet, for the people.

https://drive.google.com/file/d/0B8rWObF4xz1YWjZmNUhrbGYwM00/edit?usp=sharing

PLEB: AnWmNY2uq9WNpK42t22zSrvjpb9kSmgMyM
1010  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PLEB] Plebeian | X13 PoW + PoS | Fair Launch w/ Pools + Now Mining! on: August 09, 2014, 09:26:49 AM

No. Different devs.

But they hang out.

You'll find out who the other dev is pretty soon. Sr. Member. High profile dev.


1011  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 06, 2014, 04:25:31 AM
http://gyazo.com/4628bb8f9c44f1cd703f6afd55891996

The bottom right hand corner of your wallet should look like this.
When you hold your curser over the pink lock it should say : Wallet is currently encrypted and unlocked
When you hold the curser over the stealth bomber(??) it should be blue and say : Minting, your weight is * Network weight is * You should expect your reward in **
25 conections or whatever and up to date is a green check mark

Hope that helps


when i hover over the stealth bomber it says "not minting because you don't have mature coins"

everything else looks good.

Double check that they haven't minted yet. Why don't you show your latest transactions, sorted in descending order by date?
1012  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 06, 2014, 04:19:33 AM
Anyone find this the dumbest and stupidest? I do. If this moron think less coin is good why go with 0.5million coins? Why not go with 42 coin? or 0 coin? In my book the more whole number the better and this moron think the more decimal and zero zero zero is better. It's just weird.

I agree. It doesn't make any sense. Probably the best number allows about 100,000,000 people to have about 250 coins each. That comes out to 250 billion coins. It seems like a lot, but it's a manageable number.

When the coin number is low, like 42, then you have a problem with decimals. For example, would you buy a car for 0.00004 42? For whatever reason, it's a little easier to look at numbers after the decimal than before.

Coins need to be practical.
1013  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 04, 2014, 06:13:22 AM
What's wrong once again to discuss the safety of the more there is a reason for this? Let the XST holders once again to think about security, what's wrong? It can prevent further loss. Instead of helping each other start bickering what to write and what not, and various accusations. To that already when the topic is discussed and people help each other - it can attract new users and to show that coin is alive and community is strong. This is for those who are pursuing a purely practical purposes and not very willing to help others XST holders.
The only thing that is necessary to allocate the problem is not XST, this is a problem common security.

The problem with going overboard talking about personal computer and exchange security is that trolls see it as an opportunity to spread FUD about the coin. Also, if there are too many "OMG warez my coinz?" posts, then new users will be frightened away. Security is important, but security boils down to a list of good practices, not a montage of frightening anecdotes.
1014  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 03, 2014, 04:56:48 AM
hey guys.this is my old address that my coins were in SJhtGsKGgnJGqYbfZMkv8JKL23eqiDQD1C
seems they got in some how and got my wallet dat.not sure how with Norton sercutrity and everything else I have running.its saying coins are still at that address.my address changed in my stealth wallet and is now empty.worst thing was I just got 5000 stealth for stake challenge.lol.all I can say I hope karma gets them.

If the coins are still at that address, no one stole them.

If you have a backup wallet you are good.

Making a backup is one of the instructions here: https://bitcointalk.org/index.php?topic=681725.msg8046182#msg8046182

In fact, the dev says twice in there to backup your wallet:

"Make a copy of your wallet.dat file and put it somewhere safe."
"When you have synced completely, stop the client, back up your wallet.dat again"


1015  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 02, 2014, 11:48:01 PM
Quote
I have 24 active connections. Never had a problem with any wallet. Bittrex has 20 active connections (https://bittrex.com/Status). But somehow you can't do anything right, you fucking troll.

The problems people are reporting are with 2FA and bittrex (possibly). Don't try to jump on board and hang shit on stealth.

Sorry, I thought this is where we talked about stuff going on. I am new to crypto and to forums. If have questions or concerns I thought this would be where I could get them answered. You are right, I guess, I can't do anything right. I have been having problems from the start and they were solved by following the solutions given in this forum. Things have been right as rain since the new wallet and until just now. Maybe calling everyone trolls is how it works. I don't know. New guy here and this is the 1st coin I have been involved in. I had mined a little here and there over the last month just trying to learn. I have high hopes for the coin and I have been mining on wafflepool just to make more BTC so I can try to buy a little more XST. Every 3 days I make enough for a payout of a whole .005BTC to buy more. I don't have much compared to you big fish. I will pm someone if I have questions in the future so you don't have to be bothered. Thanks.

Yeah, if there is an issue with any coin, trolls come out in droves, even if the issue isn't really with the coin.

I was cool until there was a herd of the little troll fuckers here a couple of weeks back, and now I just like to bash anyone I think might be one.

Trolls are the worst thing about crypto hands down.
1016  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 02, 2014, 10:24:04 PM
Well, something screwy is going on. HunterS and mrdennis get hacked and coins stolen. I sent my coins from bittrex to wallet...20 min later I go to send a little bit to mrdennis to help him out (I don't have much) and I have a runtime error showing at the bottom of the wallet. Oh crap! I saw what happened to HunterS so I closed it out completely and with my heart thumping, I start it back up and....whew! My coins are still there! BUT...now it will not sync past block 30142 and I only have 7 connections to the network when I had 20+ before. Opening and closing hoping it will start syncing again.

https://bitcointalk.org/index.php?topic=681725.msg8046182#msg8046182

I have 24 active connections. Never had a problem with any wallet. Bittrex has 20 active connections (https://bittrex.com/Status). But somehow you can't do anything right, you fucking troll.

The problems people are reporting are with 2FA and bittrex (possibly). Don't try to jump on board and hang shit on stealth.
1017  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 02, 2014, 07:41:56 PM
Sorry to hear man that really sucks. I've got a lot of coins on Bittrex and no theft on my side. Everyone get a solid password manager and authy as security, I think it's time for XST cold storage wallets.

Just put them in regular wallets and let them stake.
1018  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 02, 2014, 07:40:29 PM
I'm now in contact with bittrex. Hope that i can get back my coins!
Me too!
are you hacked to?

So for now HunterS You en Me?

No. I was saying that I hope you get your coins back.
1019  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 02, 2014, 05:28:01 PM
I'm now in contact with bittrex. Hope that i can get back my coins!

Me too!
1020  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XST] StealthCoin | PoS + Tor | Vote on BTC38,Cryptsy! - New Website Live! on: August 02, 2014, 05:06:19 PM
i had 2FA enaled but got a email that is disabled. And now dumped my XST coins and pay out the BTC

Don't use email 2FA or SMS 2FA where the text is sent to google voice, especially if you are using gmail as your account login.

Probably what happened is that you use a weak gmail password or it got sniped through malware or shitware vulnerability (e.g. teamviewer) and you also had 2FA linked to the same gmail account through google voice SMS 2FA or email 2FA.

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 38 39 40 41 42 43 44 45 46 47 48 49 50 [51] 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!