Bitcoin Forum
September 21, 2024, 08:08:54 AM *
News: Latest Bitcoin Core release: 27.1 [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 »
201  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Techcoin [TECH] [186,985 PoW coins 4% PoS] [BITTREX] [** 1.0.2 **] on: August 04, 2014, 01:23:08 PM
is there a rich list for tech?

Not yet, but it is definitely on our to-do list, along with a nicer block explorer.
202  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Techcoin [TECH] [186,985 PoW coins 4% PoS] [BITTREX] [** 1.0.2 **] on: August 04, 2014, 12:21:10 PM
And thanks to whoever sent 100 my way!  My wallet will be open and connected 24/7 from now on!
203  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Techcoin [TECH] [186,985 PoW coins 4% PoS] [BITTREX] [** 1.0.2 **] on: August 02, 2014, 09:46:52 PM
windows wallet is working awesome for me Cheesy lots of stakes being found, I found it a bit weird that I sent some to cc ex and it took like 12 hrs for them to get them, yet bittrex received them with in 20 mins or so?? not sure if ccex had updated?  but I sent them a ticket to remind them Cheesy

I'm staking just over 1k in my wallet and playing with a couple hundred in the markets (trying to make more)



It looks like ccex just recently updated their wallet.  As of yesterday they still had not updated and the coin was listed as under maintenance, but they are updated now.  They were probably still on the old version when you first sent the coins.
204  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LXC][LIBREXCOIN] X11 | POW + POS | No IPO | on: August 02, 2014, 03:54:53 PM
The same IP addresses showing up connected to the network of multiple coins is not proof that the devs are connected in any way.  It means that the same IP address has open wallets connected to the networks of those coins.  No smoking gun, cut this crap out.
205  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Techcoin [TECH] [186,985 PoW coins 4% PoS] [BITTREX] [** 1.0.2 **] on: August 02, 2014, 02:19:04 PM
If anyone is having trouble compiling the qt wallet under linux, I have created a pull request that adds a modified .pro file that removes all mac and windows specific commands. It has not been approved or reviewed by the dev team as of yet, but I used it successfully.

The file is here https://github.com/KevinBiomech/Techcoin

The only difference is that there is now a file named techcoin-qt-linux.pro, so when you go to compile, the procedure is :
qmake techcoin-qt-linux.pro
make


If you started and got errors involving Mingw-48, this will solve the problem. Be sure to delete your Makefile before doing the above. (sudo rm Makefile).

To anyone who feels the urge to jump me for the level of detail, blow me. Linux users are frequently the reason people use Windows. We all start somewhere.


Thanks, I merged it into the official repo.
206  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]MULTICOIN丨X11丨MC丨First Multi Signature Coin | Multi Coin - Multi Vote on: August 02, 2014, 03:44:06 AM
This is a new one...where's the scam?  Is it a joke ?  A sociological experiment?  WTF is going on?
207  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]MULTICOIN丨X11丨MC丨First Multi Signature Coin | Multi Coin - Multi Vote on: August 01, 2014, 09:28:26 PM
Maybe the dev will come back before the PoW in his code ends...

#define POW_CUTOFF_HEIGHT 10000
208  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]MULTICOIN丨X11丨MC丨First Multi Signature Coin | Multi Coin - Multi Vote on: August 01, 2014, 09:24:24 PM
Unblievable.... dev just disappear because he make a mystake.... wtf this man...

There's a rumor that he's going to be doing absolutely nothing live on YouTube soon...don't miss it!
209  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PREANN] [ORG] Orgasmicoin - New Proof PoX - Proof of Sex [IPO][SexToy] on: August 01, 2014, 09:20:47 PM
210  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LXC][LIBREXCOIN] X11 | POW + POS | No IPO | on: August 01, 2014, 08:04:46 PM
Ive stopped mining. The lack of communication from the Dev is a big red flag. I really don't know the purpose of these coins since it seems no effort has been made to get it on an exchange!

I know there is trolling gonna happen but this is even dumb for trolls. I'm on here 3 x a day min and a lot more often than that. Really lack of communication?  Roll Eyes


As for the source it's here. Guess what is going to be put in the git hub. Same one. We will do so before pow ends.  Smiley Other features like Android wallet are being tested for public release. Mac wallet will be soon as well.

Can you explain why you can't just upload the source to github now?  It's pretty standard operating procedure and it takes like 30 seconds.
211  Alternate cryptocurrencies / Altcoin Discussion / Re: onyx was dumped by the dev. on: August 01, 2014, 07:31:17 PM
212  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LXC][LIBREXCOIN] X11 | POW + POS | No IPO | on: August 01, 2014, 06:22:43 PM
The comment at the top of this block of code is interesting:

// miner's POW block rewards (Note: 1st block = premine of 1%: 27068 coins out of 2,706,880 maximum coins in PoW period)
int64_t GetProofOfWorkReward(int64_t nFees)
{

    int64_t nSubsidy = 700 * COIN;

    if(pindexBest->nHeight <= 1000)
    {
        nSubsidy = 700 * COIN;
    }
    else if(pindexBest->nHeight <= 2000)
    {
        nSubsidy = 2500 * COIN;
    }
    else if(pindexBest->nHeight <= 6000)
    {
        nSubsidy = 1500 * COIN;
    }
    else if(pindexBest->nHeight < 8641)
    {
        nSubsidy = 303 * COIN;
    }

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

    return nSubsidy + nFees;
}

The original intent was to premine 1%, but there was no premine in the first block.  Did the dev change their mind or are they hiding something elsewhere?  The lack of github by now, or even at launch for that matter, is suspect.  Zipping the code and uploading to mega takes at least as much effort.  It makes no sense.

Look at the coin supply in the comment, 2.7 mill, it's either he changed his mind or he took this part of the code from another coin.

As for no github? That needs to be sorted ASAP.

I didn't even notice the total coins.  Most likely just laziness in cleaning up the code from whatever coin this is cloned from.  The github situation is BS though.
213  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LXC][LIBREXCOIN] X11 | POW + POS | No IPO | on: August 01, 2014, 05:48:39 PM
The comment at the top of this block of code is interesting:

// miner's POW block rewards (Note: 1st block = premine of 1%: 27068 coins out of 2,706,880 maximum coins in PoW period)
int64_t GetProofOfWorkReward(int64_t nFees)
{

    int64_t nSubsidy = 700 * COIN;

    if(pindexBest->nHeight <= 1000)
    {
        nSubsidy = 700 * COIN;
    }
    else if(pindexBest->nHeight <= 2000)
    {
        nSubsidy = 2500 * COIN;
    }
    else if(pindexBest->nHeight <= 6000)
    {
        nSubsidy = 1500 * COIN;
    }
    else if(pindexBest->nHeight < 8641)
    {
        nSubsidy = 303 * COIN;
    }

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

    return nSubsidy + nFees;
}

The original intent was to premine 1%, but there was no premine in the first block.  Did the dev change their mind or are they hiding something elsewhere?  The lack of github by now, or even at launch for that matter, is suspect.  Zipping the code and uploading to mega takes at least as much effort.  It makes no sense.
214  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]MULTICOIN丨X11丨MC丨First Multi Signature Coin | Multi Coin - Multi Vote on: July 31, 2014, 06:42:15 PM
Finally got a Mac wallet and now there's a new update!   Smiley  Updated Mac wallet coming?
215  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Techcoin [TECH] [186,985 PoW coins 4% PoS] [BITTREX] [** 1.0.2 **] on: July 31, 2014, 06:35:11 PM
the blocks are moving like a rocket we are at 5127 right now.  Smiley
Do you think we can stop mining or better if wait for a while?

Have you successfully mined any PoW blocks?  It doesn't look like any have been generated because the difficulty hasn't adjusted since the original end of PoW at block 5000.  Whether or not you want to try to keep mining for a PoW block is up to you, remember they are 0 block rewards so you will only get transaction fees.  Definitely keep staking though because the PoS blocks are what is moving the blockchain!
216  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Techcoin [TECH] [186,985 PoW coins 4% PoS] [BITTREX] [PoW Re-Start] on: July 31, 2014, 12:18:44 PM
I sent some coins from bittrex to one of my wallets.

Bittrex gave me this TXid:  822045cf749b02a06308c0e176e4034dd395ac9666f350153c682f55246b0d47  but the block explorer yields no results when I enter that TXid, and the coins have not showed up in my wallet.  Did we fork? Is Bittrex on the right fork?

I just received confirmation from Bittrex that they've updated their wallet about 5 hours ago.

did you search your address on the block explorer?  happened to me earlier that I couldn't find it, but magically showed up hours later.

checked block explorer again, not there.  I think I sent them before Bittrex did the upgrade.  Oh, well it was only 100 coins

Email Bittrex support.
217  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Techcoin [TECH] [186,985 PoW coins 4% PoS] [BITTREX] [PoW Re-Start] on: July 31, 2014, 12:17:45 PM
How long do coins stay staked for?

Thanks

15 blocks
218  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Techcoin [TECH] [186,985 PoW coins 4% PoS] [BITTREX] [PoW Re-Start] on: July 31, 2014, 11:30:10 AM
I sent some coins from bittrex to one of my wallets.

Bittrex gave me this TXid:  822045cf749b02a06308c0e176e4034dd395ac9666f350153c682f55246b0d47  but the block explorer yields no results when I enter that TXid, and the coins have not showed up in my wallet.  Did we fork? Is Bittrex on the right fork?

I just received confirmation from Bittrex that they've updated their wallet about 5 hours ago.
219  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]MULTICOIN丨X11丨MC丨First Multi Signature Coin | Multi Coin - Multi Vote on: July 30, 2014, 11:58:13 PM
Time to update the OP...Mac wallet DONE.  Keep up the good work!
220  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] ipoMiner - Profitable multipool targeting new coins on: July 30, 2014, 11:50:27 PM
Thanks for your well thought out response.  Please understand I'm not trying to troll here...I do respect you and your pool.  I guess I'm just frustrated with the current state of crypto and find this launch particularly offensive, because they're acting like their 1% premine is small, when in reality they have already premined the equivalent of 11 days worth of mining, and the bounties they are offering are such a small percentage of it.  But hey, if you're going to run a pool mining the newest coins, what is there to mine lately but scams?  I'm sure this coin will make some who are mining it a nice profit, just like Conceal did for me.  Good luck to those who choose to mine it, and I hope you get out at the right time, but I'm sitting this one out.
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!