Bitcoin Forum
May 17, 2024, 01:35:19 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Exchanges / Is https://crexbtc.com, exchange legit on: October 31, 2020, 08:32:49 AM
Hello all,

I have completed a secured deal in https://crexbtc.com
now when I try to withdraw they ask to verify the account by depositing 0.1 BTC in the account from an external address
I want to know is this a legit website or not?

Can anyone help
2  Alternate cryptocurrencies / Altcoin Discussion / How to add premine in the bitcoin source on: February 04, 2020, 01:02:38 AM
Hello all, I am learning about bitcoin development, a created a new genesis, I compiled it and i got the windows, Linux and mac wallet running pretty well. Now I also want to add premine to the source code and with some searches in the google I found a solution to it.

In validation.cpp #L1041

Code:
CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
{
    int halvings = nHeight / consensusParams.nSubsidyHalvingInterval;
    // Force block reward to zero when right shift is undefined.
    if (halvings >= 64)
        return 0;
    CAmount nSubsidy = 50 * COIN;
    if(nHeight == 4) 
    {
        nSubsidy = 1000000000 * COIN;
        return nSubsidy;
    }
    // Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.
    nSubsidy >>= halvings;
    return nSubsidy;
}

I start the mining I got the coins but I cannot spend it, do anyone has a solution to it
3  Alternate cryptocurrencies / Altcoin Discussion / cannot spend the premine coins on: February 03, 2020, 12:19:52 PM
I am trying to develop a new coin, i used the litecoin source code v.015 to develop a new coin and i added the premine coin in validation.cpp

Code:
CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
{
    int halvings = nHeight / consensusParams.nSubsidyHalvingInterval;
    // Force block reward to zero when right shift is undefined.
    if (halvings >= 64)
        return 0;
    CAmount nSubsidy = 50 * COIN;
    if(nHeight == 4) 
    {
        nSubsidy = 1000000000 * COIN;
        return nSubsidy;
    }
    // Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.
    nSubsidy >>= halvings;
   

Everything works perfectly except I cannot spend the premine, can someone help?
4  Alternate cryptocurrencies / Altcoin Discussion / Altcoin Transfer coin problem from QT wallet on: February 02, 2020, 09:45:29 AM
I have forked litecoin 0.15 and developed a new cryptocurrency but I cannot transfer bigger amounts like 60000
Is there something wrong in the qt wallet setting or something wrong in source code?
Thanks for the help in advance
5  Alternate cryptocurrencies / Altcoin Discussion / New design for litecoin qt wallet on: October 05, 2019, 08:25:43 PM
I have cloned litecoin v0.15, but the design of the wallet is not matching with my project i need a dark theme design for it, can anyone help me in updating the design or any project from where i can clone
6  Alternate cryptocurrencies / Altcoin Discussion / Build .exe for my new altcoin on: September 16, 2019, 03:44:21 AM
I have forked litecoin0.15

https://github.com/vanshtah/Arc-Iris

Wallet is compling and its is working good in linux but after following all the instructions given in doc for building it for windows
i didn't get .exe file

i am building the files in ubuntu 16.04

can someone help?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!