Search content
Sort by

Showing 10 of 10 results by maurocg83
Post
Topic
Board Announcements (Altcoins)
Re: [NENG]Nengcoin - A Decentralized Multi-Rig Solo Mining Scrypt Coin
by
maurocg83
on 01/12/2022, 17:26:48 UTC
how to set up p2pool to mine nengcoin solo?
Post
Topic
Board Announcements (Altcoins)
Re: ANN FLAPX POW/POS FW2 Scrypt MANDATORY UPDATE TO 2.0.0.0 !!! By Block 1051200 !!
by
maurocg83
on 10/04/2021, 19:55:10 UTC
someone can make the FLAPX currency blockchain available. Synchronization process takes too long, Creed.

Syncs 100 blocks every 10 minutes.  Huh

The time-consuming coin, almost dropping her aside...  Cry
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [BTCS] Revival of Bitcoin-sCrypt (New Dev Team & Move to POS/POW Hybrid)
by
maurocg83
on 18/05/2020, 21:42:06 UTC
what is the currently version of the currency now, on my machine this (bitcoin-scrypt (BTCS)
2.1.2.1), and I've been getting invalid blocks in my solo mining...  Huh

i tried to install the version that is on github but from the error in, (obj/checkpoints.o) error 1 in the build.  Cry

anyone here who can help me?  Roll Eyes

I'm using Ubuntu 16.04.6 LTS (GNU/Linux 4.4.0-178-generic x86_64)
Post
Topic
Board Announcements (Altcoins)
Re: Conspiracy Coin
by
maurocg83
on 24/02/2019, 14:54:01 UTC
Someone who has interest in obtaining Cyc (367472.10830217) in exchange for (0.00367472 BTC)?
Coins are in Tradesatoshi  Grin
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][CCB] CryptoClub ★ ROUND P-30 ★
by
maurocg83
on 26/01/2019, 16:25:23 UTC
Hello Everyone!


WWW.CRYPTOPOOLCLUB.COM
Stratum: stratum+tcp://cryptopoolclub.com:3008/3032/3256


Happy mining!


Getting Dead Pool
stratum+tcp://cryptopoolclub.com:3256
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][V3][GLT] ~ The new Era is here! GlobalToken v3 ~ // MultiAlgo & Masternode
by
maurocg83
on 09/10/2018, 13:22:24 UTC
hey, everybody! please, someone can help Me. How to mine GLT solo in the Windows wallet?

I get this error:

https://drive.google.com/open?id=1_EWUK_brzgRjD28ZSEAZJzBnRyiNjCW5
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][BRA][Brasil] Quark Masternodes Darksend Pow/Pos [Brasil][BRA][ANN]
by
maurocg83
on 09/03/2018, 22:31:07 UTC
Hello! How to install wallet on Ubuntu 14.04.??

I'm getting error:

Quote
key.cpp: In constructor ‘{anonymous}::CSecp256k1Init::CSecp256k1Init()’:
key.cpp:31:9: error: ‘ctx’ was not declared in this scope
         ctx = secp256k1_context_create(SECP256K1_CONTEXT_SIGN);
         ^
key.cpp: In destructor ‘{anonymous}::CSecp256k1Init::~CSecp256k1Init()’:
key.cpp:34:35: error: ‘ctx’ was not declared in this scope
         secp256k1_context_destroy(ctx);
                                   ^
key.cpp: In member function ‘bool CKey::SetPrivKey(const CPrivKey&, bool)’:
key.cpp:471:61: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     if (!secp256k1_ec_privkey_import(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &privkey[0], privkey.size()))
                                                             ^
key.cpp:471:118: error: ‘secp256k1_ec_privkey_import’ was not declared in this scope
     if (!secp256k1_ec_privkey_import(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &privkey[0], privkey.size()))
                                                                                                                      ^
key.cpp: In member function ‘CPrivKey CKey::GetPrivKey() const’:
key.cpp:490:66: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     int ret = secp256k1_ec_privkey_export(instance_of_csecp256k1.ctx, begin(), (unsigned char*)&privkey[0], &privkeylen, fCompressed);
                                                                  ^
key.cpp:490:133: error: ‘secp256k1_ec_privkey_export’ was not declared in this scope
     int ret = secp256k1_ec_privkey_export(instance_of_csecp256k1.ctx, begin(), (unsigned char*)&privkey[0], &privkeylen, fCompressed);
                                                                                                                                     ^
key.cpp: In member function ‘CPubKey CKey::GetPubKey() const’:
key.cpp:506:65: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     int ret = secp256k1_ec_pubkey_create(instance_of_csecp256k1.ctx, (unsigned char*)pubkey.begin(), &clen, begin(), fCompressed);
                                                                 ^
key.cpp: In member function ‘bool CKey::Sign(const uint256&, std::vector&) const’:
key.cpp:528:57: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
         if (secp256k1_ecdsa_sign(instance_of_csecp256k1.ctx, hash.begin(), (unsigned char*)&vchSig[0], &nSigLen, begin(),  secp256k1_nonce_function_rfc6979, NULL))
                                                         ^
key.cpp: In member function ‘bool CKey::SignCompact(const uint256&, std::vector&) const’:
key.cpp:552:75: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
         if (int ret = secp256k1_ecdsa_sign_compact(instance_of_csecp256k1.ctx, hash.begin(), &vchSig[1], begin(), secp256k1_nonce_function_rfc6979, NULL, &rec))
                                                                           ^
key.cpp:552:159: error: ‘secp256k1_ecdsa_sign_compact’ was not declared in this scope
         if (int ret = secp256k1_ecdsa_sign_compact(instance_of_csecp256k1.ctx, hash.begin(), &vchSig[1], begin(), secp256k1_nonce_function_rfc6979, NULL, &rec))
                                                                                                                                                               ^
key.cpp:552:17: warning: unused variable ‘ret’ [-Wunused-variable]
         if (int ret = secp256k1_ecdsa_sign_compact(instance_of_csecp256k1.ctx, hash.begin(), &vchSig[1], begin(), secp256k1_nonce_function_rfc6979, NULL, &rec))
                 ^
key.cpp: In member function ‘bool CKey::Load(CPrivKey&, CPubKey&, bool)’:
key.cpp:568:61: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     if (!secp256k1_ec_privkey_import(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &privkey[0], privkey.size()))
                                                             ^
key.cpp:568:118: error: ‘secp256k1_ec_privkey_import’ was not declared in this scope
     if (!secp256k1_ec_privkey_import(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &privkey[0], privkey.size()))
                                                                                                                      ^
key.cpp: In member function ‘bool CPubKey::VerifyCompact(const uint256&, const std::vector&) const’:
key.cpp:632:10: warning: unused variable ‘fComp’ [-Wunused-variable]
     bool fComp = IsCompressed();
          ^
key.cpp: In member function ‘bool CPubKey::IsFullyValid() const’:
key.cpp:654:60: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     if (!secp256k1_ec_pubkey_verify(instance_of_csecp256k1.ctx, begin(), size()))
                                                            ^
key.cpp:654:80: error: ‘secp256k1_ec_pubkey_verify’ was not declared in this scope
     if (!secp256k1_ec_pubkey_verify(instance_of_csecp256k1.ctx, begin(), size()))
                                                                                ^
key.cpp: In member function ‘bool CPubKey::Decompress()’:
key.cpp:669:69: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     int ret = secp256k1_ec_pubkey_decompress(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &clen);
                                                                     ^
key.cpp:669:104: error: ‘secp256k1_ec_pubkey_decompress’ was not declared in this scope
     int ret = secp256k1_ec_pubkey_decompress(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &clen);
                                                                                                        ^
key.cpp: In member function ‘bool CKey::Derive(CKey&, unsigned char*, unsigned int, const unsigned char*) const’:
key.cpp:711:70: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     bool ret = secp256k1_ec_privkey_tweak_add(instance_of_csecp256k1.ctx, (unsigned char*)keyChild.begin(), out);
                                                                      ^
key.cpp: In member function ‘bool CPubKey::Derive(CPubKey&, unsigned char*, unsigned int, const unsigned char*) const’:
key.cpp:730:69: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     bool ret = secp256k1_ec_pubkey_tweak_add(instance_of_csecp256k1.ctx, (unsigned char*)pubkeyChild.begin(), pubkeyChild.size(), out);
                                                                     ^
make: ** [obj/key.o] Erro 1
Post
Topic
Board Announcements (Altcoins)
Re: Conspiracy Coin
by
maurocg83
on 29/01/2018, 15:28:38 UTC
                                                                             CoinRaper Miningpool [CYC]
 

                                                                             http://coinraper.ddnss.de/

                                                                      EXAMPLE for CONSPIRACYCOIN [CYC]

                                                         stratum+tcp://coinraper.ddnss.de:31012 -u WalletAdress -p x

                                                                                               Ports:
                                                                                    Port: 31011, Diff: 0.032
                                                                                    Port: 31012, Diff: 2
                                                                                    Port: 31013, Diff: 128

Is there HTML5 currency is v 1.3 or v 2.0???
Post
Topic
Board Announcements (Altcoins)
Re: Conspiracy Coin
by
maurocg83
on 29/12/2017, 09:13:03 UTC
What is the stratum address of P2pool http://burzuj.net:9441/static/
I'm here so set up
ccminer21.exe --algo=x11 -o stratum+tcp://burzuj.net:9441 -u CHdR1W8KthGzdn5ijKUVXV5paJyFUoLFGN -p x

Beauty, in my ccminer now says that pool responds. Thank you
Post
Topic
Board Announcements (Altcoins)
Re: Conspiracy Coin
by
maurocg83
on 26/12/2017, 00:34:20 UTC
What is the stratum address of P2pool http://burzuj.net:9441/static/