Bitcoin Forum
May 11, 2024, 03:45:45 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zcoin - The Zerocoin cryptocurrency, guaranteeing financial privacy on: October 14, 2016, 04:56:44 PM
why not fix this shit ?

https://github.com/zcoinofficial/zcoin/blob/master/src/checkpoints.cpp#L38

Code:
    static MapCheckpoints mapCheckpoints =
        boost::assign::map_list_of
        (     0, uint256("0xf11046292ff76af48b66de6f1a210c09825d2ab4f56975ec507766ebf9c9f443"))
;
    static const CCheckpointData data = {
        &mapCheckpoints,
        1402460085, // * UNIX timestamp of last checkpoint block
        1,    // * total number of transactions between genesis and last checkpoint
                  //   (the tx=... number in the SetBestChain debug.log lines)
        1200.0     // * estimated number of transactions per day after checkpoint
};

https://github.com/zcoinofficial/zcoin/blob/master/src/main.cpp#L45

Code:
uint256 hashGenesisBlock("0x4381deb85b1b2c9843c222944b616d997516dcbd6a964e1eaf0def0830695233");

however the codebase is old and needs lots of cleaning of unused shit, and migrating to a newer codebase.

Which is price for btc with that old code from 2009? I think 630 usd right?
 Smiley


look at the checkpoint and the GenesisBlock, talking about price is a different topic
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zcoin - The Zerocoin cryptocurrency, guaranteeing financial privacy on: October 14, 2016, 04:26:31 PM
why not fix this shit ?

https://github.com/zcoinofficial/zcoin/blob/master/src/checkpoints.cpp#L38

Code:
    static MapCheckpoints mapCheckpoints =
        boost::assign::map_list_of
        (     0, uint256("0xf11046292ff76af48b66de6f1a210c09825d2ab4f56975ec507766ebf9c9f443"))
;
    static const CCheckpointData data = {
        &mapCheckpoints,
        1402460085, // * UNIX timestamp of last checkpoint block
        1,    // * total number of transactions between genesis and last checkpoint
                  //   (the tx=... number in the SetBestChain debug.log lines)
        1200.0     // * estimated number of transactions per day after checkpoint
};

https://github.com/zcoinofficial/zcoin/blob/master/src/main.cpp#L45

Code:
uint256 hashGenesisBlock("0x4381deb85b1b2c9843c222944b616d997516dcbd6a964e1eaf0def0830695233");

however the codebase is old and needs lots of cleaning of unused shit, and migrating to a newer codebase.
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zcoin - The Zerocoin cryptocurrency, guaranteeing financial privacy on: October 14, 2016, 01:30:32 PM
what i cant understand is this code taken from https://github.com/zcoinofficial/zcoin/blob/master/src/main.h#L1356:

You see that "if TestNet" hashing is LYRA2, else it is scrypt_N_1_1_256

so are we mining scrypt_N ?  Huh

Code:
    uint256 GetPoWHash(int height) const
    {
        uint256 thash;

        if( !fTestNet && height >= 500){
            LYRA2(BEGIN(thash), 32, BEGIN(nVersion), 80, BEGIN(nVersion), 80, 2, height, 256);
        }else if(fTestNet && height >= 138){
            LYRA2(BEGIN(thash), 32, BEGIN(nVersion), 80, BEGIN(nVersion), 80, 2, height, 256);
        }else{
            scrypt_N_1_1_256(BEGIN(nVersion), BEGIN(thash), GetNfactor(nTime));
        }

        return thash;
}

Are you seeing straight? Look at these lines:

 if( !fTestNet && height >= 500){
      LYRA2(BEGIN(thash) ...


For those of us who aren't technically versed in programming: it basically means "if the miner isn't in working in TestNet AND height is above or equal to 500, then use Lyra2". Hashing algo was switched in order to improve the resilience against GPU/ASIC mining.



OPS, i just noticed the "!" which means "not"  Grin
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zcoin - The Zerocoin cryptocurrency, guaranteeing financial privacy on: October 14, 2016, 01:24:10 PM
what i cant understand is this code taken from https://github.com/zcoinofficial/zcoin/blob/master/src/main.h#L1356:

You see that "if TestNet" hashing is LYRA2, else it is scrypt_N_1_1_256

so are we mining scrypt_N ?  Huh

Code:
    uint256 GetPoWHash(int height) const
    {
        uint256 thash;

        if( !fTestNet && height >= 500){
            LYRA2(BEGIN(thash), 32, BEGIN(nVersion), 80, BEGIN(nVersion), 80, 2, height, 256);
        }else if(fTestNet && height >= 138){
            LYRA2(BEGIN(thash), 32, BEGIN(nVersion), 80, BEGIN(nVersion), 80, 2, height, 256);
        }else{
            scrypt_N_1_1_256(BEGIN(nVersion), BEGIN(thash), GetNfactor(nTime));
        }

        return thash;
}
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zcoin - The Zerocoin cryptocurrency, guaranteeing financial privacy on: October 14, 2016, 12:29:59 PM
is something wrong with novaexchange? I cant see the order book or chat

same here
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zcoin - The Zerocoin cryptocurrency, guaranteeing financial privacy on: October 07, 2016, 09:37:30 PM

now where's our miners developers in the house?

All we need is someone to compile windows binaries for the QT wallet and OC's miner. I tried with Visual Studio 2015 but got errors. I have no idea how to build either source.. so sad.  Cry



me too, need to learn more code!

CODE IS LAW!!

Well a windows miner binary is here:

https://github.com/ocminer/cpuminer-xzc/releases

some say it works, some say it doesn't

ocminer Thanks,
https://github.com/ocminer/cpuminer-xzc/releases


I'm using Windows.
1) How should I run it Just open a Dos command and type cpuminer.exe without any argument ?
2) How will it know my Wallet Address.
I just downloaded Zcoin wallet and it's on sync now.
Thanks again



login to pool then go here : https://xzc.suprnova.cc/index.php?page=gettingstarted
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] WAVES. Ultimate crypto-tokens blockchain platform. on: June 19, 2016, 04:48:42 PM
The dump is going to be hard , look at "Distribution" Tab on bittrex  Grin
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] WAVES. Ultimate crypto-tokens blockchain platform. on: June 19, 2016, 10:28:43 AM
How to send to bittrex from lite wallet?

Code:
Error!
Account number must be a sequence of 35 alphanumeric characters with no spaces starting with '1W'

Bittrex address starts with 3PXXXXXXXXXXXXXX...

Go back a few pages, they said to add a "1W" to the 3PXXXX.... Bitrex deposit address.
I can't yet confirm that, but quite a few have. Just send 2 WAVES as a test imo.

Confirmed, i have received my WAVES.

Thanks
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] WAVES. Ultimate crypto-tokens blockchain platform. on: June 19, 2016, 10:16:50 AM
How to send to bittrex from lite wallet?

Code:
Error!
Account number must be a sequence of 35 alphanumeric characters with no spaces starting with '1W'

Bittrex address starts with 3PXXXXXXXXXXXXXX...
10  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: $WAVES Buying/Selling Thread on: June 16, 2016, 06:10:39 PM
selling 3333 WAVES @ 0.001 BTC
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] WAVES. Ultimate crypto-tokens blockchain platform. on: June 15, 2016, 06:01:18 PM
selling 3333 WAVES for 4 BTC. PM
12  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN][EXCHANGE] Poloniex - Crypto Exchange with BTC/NXT on: June 06, 2016, 02:02:12 PM
it is down, i use TOR and many VPNs , also yobit is down, do they belong to same owner c-cex is up ( all of them use cloudflare ) ? or universal hack or DDOS ?  Huh
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Human minable coin on: April 21, 2016, 03:08:26 PM
ima rent some hands to mine, i think 10 Ghands will do the job  Grin
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: | ANN | Espers [ESP] | New Algo | New Features In Development | Reverse-ICO | on: April 19, 2016, 10:54:11 PM
WTS 6,334,559  ESP PM offers  Grin
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][STEEM][POW] - NO IPO | NO PREMINE | NO INSTAMINE (relaunch) on: April 19, 2016, 03:57:22 AM
how exactly can I get mining on this ? i realy dont understand? Do i have to run a full node on my PC?

join http://steem.slack.com ..  auto-inviter -> http://steem.herokuapp.com

good guys there will help you .
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ICO on April 18] The Next Big Thing? #Edon #newTechnology! Bittrex Crowdfund! on: April 18, 2016, 04:06:55 PM
404 - Houston we have a problem
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][STEEM][POW] - NO IPO | NO PREMINE | NO INSTAMINE (relaunch) on: April 17, 2016, 10:19:00 AM
how much total coins in STEEM?

Currently there is 259290 STEEM only, the major amount is locked as smooth mentioned.
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [TBA] The Next Big Thing? #Edon #newTechnology! ICO Starting Soon on: April 16, 2016, 01:08:50 AM
is this based on NODE coin ?
no. Edon is also coded in node.js and the name NODE is mirrored, but that's all I think.


i think its just a fork, just have a look at peers.

bump, dev ?  Roll Eyes


bump
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [TBA] The Next Big Thing? #Edon #newTechnology! ICO Starting Soon on: April 14, 2016, 07:17:42 PM
is this based on NODE coin ?
no. Edon is also coded in node.js and the name NODE is mirrored, but that's all I think.


i think its just a fork, just have a look at peers.

bump, dev ?  Roll Eyes
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [TBA] The Next Big Thing? #Edon #newTechnology! ICO Starting Soon on: April 14, 2016, 05:25:46 PM
is this based on NODE coin ?
no. Edon is also coded in node.js and the name NODE is mirrored, but that's all I think.


i think its just a fork, just have a look at peers.
Pages: [1] 2 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!