Search content
Sort by

Showing 20 of 215 results by BartoszN1990
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [Phantomx] coin -> online currency [PNX] | Pow/PoS X11 Masternode
by
BartoszN1990
on 17/12/2019, 18:43:14 UTC
guys why cant install wallet on lunix 18.04.3 after this

Quote
cd ~
 wget https://raw.githubusercontent.com/phantomxdev/phantomx/master/autoinstall/install-pnx-wallet.sh
 sudo chmod +x install-pnx-wallet.sh
 ./install-pnx-wallet.sh

have this error

Quote
########################################
# Compiling PNX WALLET (TAKES A WHILE) #
########################################
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/wallets/phantomx/src -I/wallets/phantomx/src/obj -DUSE_UPNP=0 -DENABLE_WALLET -I/wallets/phantomx/src/leveldb/include -I/wallets/phantomx/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
In file included from chainparams.h:9:0,
                 from alert.cpp:7:
bignum.h:57:24: error: invalid use of incomplete type ‘BIGNUM {aka struct bignum_st}’
 class CBigNum : public BIGNUM
                        ^~~~~~
In file included from /usr/include/openssl/crypto.h:25:0,
                 from allocators.h:12,
                 from serialize.h:22,
                 from alert.h:9,
                 from alert.cpp:5:
/usr/include/openssl/ossl_typ.h:80:16: note: forward declaration of ‘BIGNUM {aka struct bignum_st}’
 typedef struct bignum_st BIGNUM;
                ^~~~~~~~~
In file included from chainparams.h:9:0,
                 from alert.cpp:7:
bignum.h: In constructor ‘CBigNum::CBigNum()’:
bignum.h:62:9: error: ‘BN_init’ was not declared in this scope
         BN_init(this);
         ^~~~~~~
bignum.h:62:9: note: suggested alternative: ‘BN_print’
         BN_init(this);
         ^~~~~~~
         BN_print
bignum.h: In copy constructor ‘CBigNum::CBigNum(const CBigNum&)’:
bignum.h:67:9: error: ‘BN_init’ was not declared in this scope
         BN_init(this);
         ^~~~~~~
bignum.h:67:9: note: suggested alternative: ‘BN_print’
         BN_init(this);
         ^~~~~~~
         BN_print
bignum.h:68:30: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘BIGNUM* BN_copy(BIGNUM*, const BIGNUM*)’
         if (!BN_copy(this, &b))
                              ^
bignum.h:70:31: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘void BN_clear_free(BIGNUM*)’
             BN_clear_free(this);
                               ^
bignum.h: In member function ‘CBigNum& CBigNum::operator=(const CBigNum&)’:
bignum.h:77:30: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘BIGNUM* BN_copy(BIGNUM*, const BIGNUM*)’
         if (!BN_copy(this, &b))
                              ^
bignum.h: In destructor ‘CBigNum::~CBigNum()’:
bignum.h:84:27: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘void BN_clear_free(BIGNUM*)’
         BN_clear_free(this);
                           ^
bignum.h: In constructor ‘CBigNum::CBigNum(signed char)’:
bignum.h:88:37: error: ‘BN_init’ was not declared in this scope
     CBigNum(signed char n)        { BN_init(this); if (n >= 0) setulong(n); else setint64(n); }
                                     ^~~~~~~
bignum.h:88:37: note: suggested alternative: ‘BN_print’
     CBigNum(signed char n)        { BN_init(this); if (n >= 0) setulong(n); else setint64(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(short int)’:
bignum.h:89:37: error: ‘BN_init’ was not declared in this scope
     CBigNum(short n)              { BN_init(this); if (n >= 0) setulong(n); else setint64(n); }
                                     ^~~~~~~
bignum.h:89:37: note: suggested alternative: ‘BN_print’
     CBigNum(short n)              { BN_init(this); if (n >= 0) setulong(n); else setint64(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(int)’:
bignum.h:90:37: error: ‘BN_init’ was not declared in this scope
     CBigNum(int n)                { BN_init(this); if (n >= 0) setulong(n); else setint64(n); }
                                     ^~~~~~~
bignum.h:90:37: note: suggested alternative: ‘BN_print’
     CBigNum(int n)                { BN_init(this); if (n >= 0) setulong(n); else setint64(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(long int)’:
bignum.h:91:37: error: ‘BN_init’ was not declared in this scope
     CBigNum(long n)               { BN_init(this); if (n >= 0) setulong(n); else setint64(n); }
                                     ^~~~~~~
bignum.h:91:37: note: suggested alternative: ‘BN_print’
     CBigNum(long n)               { BN_init(this); if (n >= 0) setulong(n); else setint64(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(long long int)’:
bignum.h:92:37: error: ‘BN_init’ was not declared in this scope
     CBigNum(long long n)          { BN_init(this); setint64(n); }
                                     ^~~~~~~
bignum.h:92:37: note: suggested alternative: ‘BN_print’
     CBigNum(long long n)          { BN_init(this); setint64(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(unsigned char)’:
bignum.h:93:37: error: ‘BN_init’ was not declared in this scope
     CBigNum(unsigned char n)      { BN_init(this); setulong(n); }
                                     ^~~~~~~
bignum.h:93:37: note: suggested alternative: ‘BN_print’
     CBigNum(unsigned char n)      { BN_init(this); setulong(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(short unsigned int)’:
bignum.h:94:37: error: ‘BN_init’ was not declared in this scope
     CBigNum(unsigned short n)     { BN_init(this); setulong(n); }
                                     ^~~~~~~
bignum.h:94:37: note: suggested alternative: ‘BN_print’
     CBigNum(unsigned short n)     { BN_init(this); setulong(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(unsigned int)’:
bignum.h:95:37: error: ‘BN_init’ was not declared in this scope
     CBigNum(unsigned int n)       { BN_init(this); setulong(n); }
                                     ^~~~~~~
bignum.h:95:37: note: suggested alternative: ‘BN_print’
     CBigNum(unsigned int n)       { BN_init(this); setulong(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(long unsigned int)’:
bignum.h:96:37: error: ‘BN_init’ was not declared in this scope
     CBigNum(unsigned long n)      { BN_init(this); setulong(n); }
                                     ^~~~~~~
bignum.h:96:37: note: suggested alternative: ‘BN_print’
     CBigNum(unsigned long n)      { BN_init(this); setulong(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(long long unsigned int)’:
bignum.h:97:37: error: ‘BN_init’ was not declared in this scope
     CBigNum(unsigned long long n) { BN_init(this); setuint64(n); }
                                     ^~~~~~~
bignum.h:97:37: note: suggested alternative: ‘BN_print’
     CBigNum(unsigned long long n) { BN_init(this); setuint64(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(uint256)’:
bignum.h:98:37: error: ‘BN_init’ was not declared in this scope
     explicit CBigNum(uint256 n)   { BN_init(this); setuint256(n); }
                                     ^~~~~~~
bignum.h:98:37: note: suggested alternative: ‘BN_print’
     explicit CBigNum(uint256 n)   { BN_init(this); setuint256(n); }
                                     ^~~~~~~
                                     BN_print
bignum.h: In constructor ‘CBigNum::CBigNum(const std::vector&)’:
bignum.h:102:9: error: ‘BN_init’ was not declared in this scope
         BN_init(this);
         ^~~~~~~
bignum.h:102:9: note: suggested alternative: ‘BN_print’
         BN_init(this);
         ^~~~~~~
         BN_print
bignum.h: In static member function ‘static CBigNum CBigNum::randBignum(const CBigNum&)’:
bignum.h:113:39: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_rand_range(BIGNUM*, const BIGNUM*)’
         if(!BN_rand_range(&ret, &range)){
                                       ^
bignum.h: In static member function ‘static CBigNum CBigNum::RandKBitBigum(uint32_t)’:
bignum.h:125:35: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_rand(BIGNUM*, int, int, int)’
         if(!BN_rand(&ret, k, -1, 0)){
                                   ^
bignum.h: In member function ‘int CBigNum::bitSize() const’:
bignum.h:136:33: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_num_bits(const BIGNUM*)’
         return  BN_num_bits(this);
                                 ^
bignum.h: In member function ‘void CBigNum::setulong(long unsigned int)’:
bignum.h:142:33: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_set_word(BIGNUM*, long unsigned int)’
         if (!BN_set_word(this, n))
                                 ^
bignum.h: In member function ‘long unsigned int CBigNum::getulong() const’:
bignum.h:148:32: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘long unsigned int BN_get_word(const BIGNUM*)’
         return BN_get_word(this);
                                ^
bignum.h: In member function ‘unsigned int CBigNum::getuint() const’:
bignum.h:153:32: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘long unsigned int BN_get_word(const BIGNUM*)’
         return BN_get_word(this);
                                ^
bignum.h: In member function ‘int CBigNum::getint() const’:
bignum.h:158:43: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘long unsigned int BN_get_word(const BIGNUM*)’
         unsigned long n = BN_get_word(this);
                                           ^
bignum.h:159:33: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_is_negative(const BIGNUM*)’
         if (!BN_is_negative(this))
                                 ^
In file included from chainparams.h:9:0,
                 from alert.cpp:7:
bignum.h: In member function ‘void CBigNum::setint64(int64_t)’:
bignum.h:205:37: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘3’ to ‘BIGNUM* BN_mpi2bn(const unsigned char*, int, BIGNUM*)’
         BN_mpi2bn(pch, p - pch, this);
                                     ^
bignum.h: In member function ‘uint64_t CBigNum::getuint64()’:
bignum.h:210:50: error: cannot convert ‘CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_bn2mpi(const BIGNUM*, unsigned char*)’
         unsigned int nSize = BN_bn2mpi(this, NULL);
                                                  ^
bignum.h:214:32: error: cannot convert ‘CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_bn2mpi(const BIGNUM*, unsigned char*)’
         BN_bn2mpi(this, &vch[0]);
                                ^
bignum.h: In member function ‘void CBigNum::setuint64(uint64_t)’:
bignum.h:247:37: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘3’ to ‘BIGNUM* BN_mpi2bn(const unsigned char*, int, BIGNUM*)’
         BN_mpi2bn(pch, p - pch, this);
                                     ^
bignum.h: In member function ‘void CBigNum::setuint256(uint256)’:
bignum.h:275:37: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘3’ to ‘BIGNUM* BN_mpi2bn(const unsigned char*, int, BIGNUM*)’
         BN_mpi2bn(pch, p - pch, this);
                                     ^
bignum.h: In member function ‘uint256 CBigNum::getuint256() const’:
bignum.h:280:50: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_bn2mpi(const BIGNUM*, unsigned char*)’
         unsigned int nSize = BN_bn2mpi(this, NULL);
                                                  ^
bignum.h:284:32: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_bn2mpi(const BIGNUM*, unsigned char*)’
         BN_bn2mpi(this, &vch[0]);
                                ^
bignum.h: In member function ‘void CBigNum::setvch(const std::vector&)’:
bignum.h:306:46: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘3’ to ‘BIGNUM* BN_mpi2bn(const unsigned char*, int, BIGNUM*)’
         BN_mpi2bn(&vch2[0], vch2.size(), this);
                                              ^
bignum.h: In member function ‘std::vector CBigNum::getvch() const’:
bignum.h:311:50: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_bn2mpi(const BIGNUM*, unsigned char*)’
         unsigned int nSize = BN_bn2mpi(this, NULL);
                                                  ^
bignum.h:315:32: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_bn2mpi(const BIGNUM*, unsigned char*)’
         BN_bn2mpi(this, &vch[0]);
                                ^
bignum.h: In member function ‘CBigNum& CBigNum::SetCompact(unsigned int)’:
bignum.h:329:44: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘3’ to ‘BIGNUM* BN_mpi2bn(const unsigned char*, int, BIGNUM*)’
         BN_mpi2bn(&vch[0], vch.size(), this);
                                            ^
bignum.h: In member function ‘unsigned int CBigNum::GetCompact() const’:
bignum.h:335:50: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_bn2mpi(const BIGNUM*, unsigned char*)’
         unsigned int nSize = BN_bn2mpi(this, NULL);
                                                  ^
bignum.h:338:32: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_bn2mpi(const BIGNUM*, unsigned char*)’
         BN_bn2mpi(this, &vch[0]);
                                ^
bignum.h: In member function ‘std::__cxx11::string CBigNum::ToString(int) const’:
bignum.h:383:35: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘void BN_set_negative(BIGNUM*, int)’
         BN_set_negative(&bn, false);
                                   ^
bignum.h:386:29: error: cannot convert ‘CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_cmp(const BIGNUM*, const BIGNUM*)’
         if (BN_cmp(&bn, &bn0) == 0)
                             ^
bignum.h:388:32: error: cannot convert ‘CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_cmp(const BIGNUM*, const BIGNUM*)’
         while (BN_cmp(&bn, &bn0) > 0)
                                ^
bignum.h:390:54: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_div(BIGNUM*, BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
             if (!BN_div(&dv, &rem, &bn, &bnBase, pctx))
                                                      ^
bignum.h:396:32: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_is_negative(const BIGNUM*)’
         if (BN_is_negative(this))
                                ^
bignum.h: In member function ‘CBigNum CBigNum::pow(const CBigNum&) const’:
bignum.h:443:41: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_exp(BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
         if (!BN_exp(&ret, this, &e, pctx))
                                         ^
bignum.h: In member function ‘CBigNum CBigNum::mul_mod(const CBigNum&, const CBigNum&) const’:
bignum.h:456:49: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_mod_mul(BIGNUM*, const BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
         if (!BN_mod_mul(&ret, this, &b, &m, pctx))
                                                 ^
bignum.h: In member function ‘CBigNum CBigNum::pow_mod(const CBigNum&, const CBigNum&) const’:
bignum.h:474:56: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_mod_exp(BIGNUM*, const BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
             if (!BN_mod_exp(&ret, &inv, &posE, &m, pctx))
                                                        ^
bignum.h:477:53: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_mod_exp(BIGNUM*, const BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
             if (!BN_mod_exp(&ret, this, &e, &m, pctx))
                                                     ^
bignum.h: In member function ‘CBigNum CBigNum::inverse(const CBigNum&) const’:
bignum.h:492:49: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘BIGNUM* BN_mod_inverse(BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
         if (!BN_mod_inverse(&ret, this, &m, pctx))
                                                 ^
bignum.h: In static member function ‘static CBigNum CBigNum::generatePrime(unsigned int, bool)’:
bignum.h:505:81: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_generate_prime_ex(BIGNUM*, int, int, const BIGNUM*, const BIGNUM*, BN_GENCB*)’
      if(!BN_generate_prime_ex(&ret, numBits, (safe == true), NULL, NULL, NULL))
                                                                              ^
bignum.h: In member function ‘CBigNum CBigNum::gcd(const CBigNum&) const’:
bignum.h:518:41: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_gcd(BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
         if (!BN_gcd(&ret, this, &b, pctx))
                                         ^
bignum.h: In member function ‘bool CBigNum::isPrime(int) const’:
bignum.h:531:61: warning: ‘int BN_is_prime(const BIGNUM*, int, void (*)(int, int, void*), BN_CTX*, void*)’ is deprecated [-Wdeprecated-declarations]
         int ret = BN_is_prime(this, checks, NULL, pctx, NULL);
                                                             ^
In file included from /usr/include/openssl/e_os2.h:13:0,
                 from /usr/include/openssl/crypto.h:17,
                 from allocators.h:12,
                 from serialize.h:22,
                 from alert.h:9,
                 from alert.cpp:5:
/usr/include/openssl/bn.h:332:1: note: declared here
 DEPRECATEDIN_0_9_8(int
 ^
In file included from chainparams.h:9:0,
                 from alert.cpp:7:
bignum.h:531:61: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_is_prime(const BIGNUM*, int, void (*)(int, int, void*), BN_CTX*, void*)’
         int ret = BN_is_prime(this, checks, NULL, pctx, NULL);
                                                             ^
bignum.h: In member function ‘bool CBigNum::isOne() const’:
bignum.h:539:30: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_is_one(const BIGNUM*)’
         return BN_is_one(this);
                              ^
bignum.h: In member function ‘bool CBigNum::operator!() const’:
bignum.h:545:31: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_is_zero(const BIGNUM*)’
         return BN_is_zero(this);
                               ^
bignum.h: In member function ‘CBigNum& CBigNum::operator+=(const CBigNum&)’:
bignum.h:550:35: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_add(BIGNUM*, const BIGNUM*, const BIGNUM*)’
         if (!BN_add(this, this, &b))
                                   ^
bignum.h: In member function ‘CBigNum& CBigNum::operator*=(const CBigNum&)’:
bignum.h:564:41: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_mul(BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
         if (!BN_mul(this, this, &b, pctx))
                                         ^
bignum.h: In member function ‘CBigNum& CBigNum::operator<<=(unsigned int)’:
bignum.h:583:41: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_lshift(BIGNUM*, const BIGNUM*, int)’
         if (!BN_lshift(this, this, shift))
                                         ^
bignum.h: In member function ‘CBigNum& CBigNum::operator>>=(unsigned int)’:
bignum.h:594:28: error: cannot convert ‘CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_cmp(const BIGNUM*, const BIGNUM*)’
         if (BN_cmp(&a, this) > 0)
                            ^
bignum.h:600:41: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_rshift(BIGNUM*, const BIGNUM*, int)’
         if (!BN_rshift(this, this, shift))
                                         ^
bignum.h: In member function ‘CBigNum& CBigNum::operator++()’:
bignum.h:609:47: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_add(BIGNUM*, const BIGNUM*, const BIGNUM*)’
         if (!BN_add(this, this, BN_value_one()))
                                               ^
bignum.h: In member function ‘CBigNum& CBigNum::operator--()’:
bignum.h:626:45: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_sub(BIGNUM*, const BIGNUM*, const BIGNUM*)’
         if (!BN_sub(&r, this, BN_value_one()))
                                             ^
bignum.h: In function ‘const CBigNum operator+(const CBigNum&, const CBigNum&)’:
bignum.h:653:27: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_add(BIGNUM*, const BIGNUM*, const BIGNUM*)’
     if (!BN_add(&r, &a, &b))
                           ^
bignum.h: In function ‘const CBigNum operator-(const CBigNum&, const CBigNum&)’:
bignum.h:661:27: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_sub(BIGNUM*, const BIGNUM*, const BIGNUM*)’
     if (!BN_sub(&r, &a, &b))
                           ^
bignum.h: In function ‘const CBigNum operator-(const CBigNum&)’:
bignum.h:669:43: error: cannot convert ‘CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_is_negative(const BIGNUM*)’
     BN_set_negative(&r, !BN_is_negative(&r));
                                           ^
bignum.h: In function ‘const CBigNum operator*(const CBigNum&, const CBigNum&)’:
bignum.h:677:33: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_mul(BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
     if (!BN_mul(&r, &a, &b, pctx))
                                 ^
bignum.h: In function ‘const CBigNum operator/(const CBigNum&, const CBigNum&)’:
bignum.h:686:39: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_div(BIGNUM*, BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
     if (!BN_div(&r, NULL, &a, &b, pctx))
                                       ^
bignum.h: In function ‘const CBigNum operator%(const CBigNum&, const CBigNum&)’:
bignum.h:695:35: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_nnmod(BIGNUM*, const BIGNUM*, const BIGNUM*, BN_CTX*)’
     if (!BN_nnmod(&r, &a, &b, pctx))
                                   ^
bignum.h: In function ‘const CBigNum operator<<(const CBigNum&, unsigned int)’:
bignum.h:703:33: error: cannot convert ‘CBigNum*’ to ‘BIGNUM* {aka bignum_st*}’ for argument ‘1’ to ‘int BN_lshift(BIGNUM*, const BIGNUM*, int)’
     if (!BN_lshift(&r, &a, shift))
                                 ^
bignum.h: In function ‘bool operator==(const CBigNum&, const CBigNum&)’:
bignum.h:715:83: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_cmp(const BIGNUM*, const BIGNUM*)’
 perator==(const CBigNum& a, const CBigNum& b) { return (BN_cmp(&a, &b) == 0); }
                                                                      ^
bignum.h: In function ‘bool operator!=(const CBigNum&, const CBigNum&)’:
bignum.h:716:83: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_cmp(const BIGNUM*, const BIGNUM*)’
 perator!=(const CBigNum& a, const CBigNum& b) { return (BN_cmp(&a, &b) != 0); }
                                                                      ^
bignum.h: In function ‘bool operator<=(const CBigNum&, const CBigNum&)’:
bignum.h:717:83: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_cmp(const BIGNUM*, const BIGNUM*)’
 perator<=(const CBigNum& a, const CBigNum& b) { return (BN_cmp(&a, &b) <= 0); }
                                                                      ^
bignum.h: In function ‘bool operator>=(const CBigNum&, const CBigNum&)’:
bignum.h:718:83: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_cmp(const BIGNUM*, const BIGNUM*)’
 perator>=(const CBigNum& a, const CBigNum& b) { return (BN_cmp(&a, &b) >= 0); }
                                                                      ^
bignum.h: In function ‘bool operator<(const CBigNum&, const CBigNum&)’:
bignum.h:719:83: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_cmp(const BIGNUM*, const BIGNUM*)’
 operator<(const CBigNum& a, const CBigNum& b)  { return (BN_cmp(&a, &b) < 0); }
                                                                       ^
bignum.h: In function ‘bool operator>(const CBigNum&, const CBigNum&)’:
bignum.h:720:83: error: cannot convert ‘const CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_cmp(const BIGNUM*, const BIGNUM*)’
 operator>(const CBigNum& a, const CBigNum& b)  { return (BN_cmp(&a, &b) > 0); }
                                                                       ^
In file included from util.h:16:0,
                 from chainparams.h:11,
                 from alert.cpp:7:
tinyformat.h: In static member function ‘static const char* tinyformat::detail::FormatIterator::streamStateFromFormat(std::ostream&, unsigned int&, const char*, int, int)’:
tinyformat.h:785:21: warning: this statement may fall through [-Wimplicit-fallthrough=]
             out.setf(std::ios::uppercase);
             ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
tinyformat.h:786:9: note: here
         case 'x': case 'p':
         ^~~~
tinyformat.h:791:21: warning: this statement may fall through [-Wimplicit-fallthrough=]
             out.setf(std::ios::uppercase);
             ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
tinyformat.h:792:9: note: here
         case 'e':
         ^~~~
tinyformat.h:797:21: warning: this statement may fall through [-Wimplicit-fallthrough=]
             out.setf(std::ios::uppercase);
             ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
tinyformat.h:798:9: note: here
         case 'f':
         ^~~~
tinyformat.h:802:21: warning: this statement may fall through [-Wimplicit-fallthrough=]
             out.setf(std::ios::uppercase);
             ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
tinyformat.h:803:9: note: here
         case 'g':
         ^~~~
makefile.unix:225: recipe for target 'obj/alert.o' failed
make: *** [obj/alert.o] Error 1

Post
Topic
Board Announcements (Altcoins)
Re: [ANN][CHILI]🌶ChiliCoin🌶| v2.0 | 100% PoS + Masternodes, SeeSaw, Zerocoin
by
BartoszN1990
on 28/05/2018, 06:12:58 UTC
How to instal ChiliCoin-V2 wallet on buntu console ? i cant find how to do it please help
Post
Topic
Board Announcements (Altcoins)
Re: [DYOR] Do Your Own Research [x11][PoW/PoS][Bounties!][Pools!][Giveaway live!]
by
BartoszN1990
on 09/04/2018, 03:57:40 UTC
Scam alert
Post
Topic
Board Announcements (Altcoins)
Re: ANN:[GMS] a Blockchain-Powered Financial Service Platform for Developing NationS
by
BartoszN1990
on 06/03/2018, 16:37:01 UTC
Can i please help on this issue

Quote
[/root/wallets/gmcash/src]$ sudo make -f makefile.unix
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/root/wallets/gmcash/src -I/root/wallets/gmcash/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/root/wallets/gmcash/src/leveldb/include -I/root/wallets/gmcash/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -fpermissive -MMD -MF obj/groestl.d -o obj/groestl.o groestl.c
groestl.c: In function ‘void groestl_small_close(sph_groestl_small_context*, unsigned int, unsigned int, void*, size_t)’:
groestl.c:2816:17: warning: variable ‘buf’ set but not used [-Wunused-but-set-variable]
  unsigned char *buf;
                 ^
groestl.c: In function ‘void groestl_big_close(sph_groestl_big_context*, unsigned int, unsigned int, void*, size_t)’:
groestl.c:2952:17: warning: variable ‘buf’ set but not used [-Wunused-but-set-variable]
  unsigned char *buf;
                 ^
groestl.c: In function ‘void sph_groestl224_init(void*)’:
groestl.c:3013:28: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]
  groestl_small_init(cc, 224);
                            ^
groestl.c:2738:1: note:   initializing argument 1 of ‘void groestl_small_init(sph_groestl_small_context*, unsigned int)’
 groestl_small_init(sph_groestl_small_context *sc, unsigned out_size)
 ^
groestl.c: In function ‘void sph_groestl224(void*, const void*, size_t)’:
groestl.c:3020:34: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]
  groestl_small_core(cc, data, len);
                                  ^
groestl.c:2771:1: note:   initializing argument 1 of ‘void groestl_small_core(sph_groestl_small_context*, const void*, size_t)’
 groestl_small_core(sph_groestl_small_context *sc, const void *data, size_t len)
 ^
groestl.c: In function ‘void sph_groestl224_close(void*, void*)’:
groestl.c:3027:39: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]
  groestl_small_close(cc, 0, 0, dst, 28);
                                       ^
groestl.c:2813:1: note:   initializing argument 1 of ‘void groestl_small_close(sph_groestl_small_context*, unsigned int, unsigned int, void*, size_t)’
 groestl_small_close(sph_groestl_small_context *sc,
 ^
groestl.c: In function ‘void sph_groestl224_addbits_and_close(void*, unsigned int, unsigned int, void*)’:
groestl.c:3034:40: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]
  groestl_small_close(cc, ub, n, dst, 28);
                                        ^
groestl.c:2813:1: note:   initializing argument 1 of ‘void groestl_small_close(sph_groestl_small_context*, unsigned int, unsigned int, void*, size_t)’
 groestl_small_close(sph_groestl_small_context *sc,
 ^
groestl.c: In function ‘void sph_groestl256_init(void*)’:
groestl.c:3041:28: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]
  groestl_small_init(cc, 256);
                            ^
groestl.c:2738:1: note:   initializing argument 1 of ‘void groestl_small_init(sph_groestl_small_context*, unsigned int)’
 groestl_small_init(sph_groestl_small_context *sc, unsigned out_size)
 ^
groestl.c: In function ‘void sph_groestl256(void*, const void*, size_t)’:
groestl.c:3048:34: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]
  groestl_small_core(cc, data, len);
                                  ^
groestl.c:2771:1: note:   initializing argument 1 of ‘void groestl_small_core(sph_groestl_small_context*, const void*, size_t)’
 groestl_small_core(sph_groestl_small_context *sc, const void *data, size_t len)
 ^
groestl.c: In function ‘void sph_groestl256_close(void*, void*)’:
groestl.c:3055:39: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]
  groestl_small_close(cc, 0, 0, dst, 32);
                                       ^
groestl.c:2813:1: note:   initializing argument 1 of ‘void groestl_small_close(sph_groestl_small_context*, unsigned int, unsigned int, void*, size_t)’
 groestl_small_close(sph_groestl_small_context *sc,
 ^
groestl.c: In function ‘void sph_groestl256_addbits_and_close(void*, unsigned int, unsigned int, void*)’:
groestl.c:3062:40: warning: invalid conversion from ‘void*’ to ‘sph_groestl_small_context*’ [-fpermissive]
  groestl_small_close(cc, ub, n, dst, 32);
                                        ^
groestl.c:2813:1: note:   initializing argument 1 of ‘void groestl_small_close(sph_groestl_small_context*, unsigned int, unsigned int, void*, size_t)’
 groestl_small_close(sph_groestl_small_context *sc,
 ^
groestl.c: In function ‘void sph_groestl384_init(void*)’:
groestl.c:3069:26: warning: invalid conversion from ‘void*’ to ‘sph_groestl_big_context*’ [-fpermissive]
  groestl_big_init(cc, 384);
                          ^
groestl.c:2874:1: note:   initializing argument 1 of ‘void groestl_big_init(sph_groestl_big_context*, unsigned int)’
 groestl_big_init(sph_groestl_big_context *sc, unsigned out_size)
 ^
groestl.c: In function ‘void sph_groestl384(void*, const void*, size_t)’:
groestl.c:3076:32: warning: invalid conversion from ‘void*’ to ‘sph_groestl_big_context*’ [-fpermissive]
  groestl_big_core(cc, data, len);
                                ^
groestl.c:2907:1: note:   initializing argument 1 of ‘void groestl_big_core(sph_groestl_big_context*, const void*, size_t)’
 groestl_big_core(sph_groestl_big_context *sc, const void *data, size_t len)
 ^
groestl.c: In function ‘void sph_groestl384_close(void*, void*)’:
groestl.c:3083:37: warning: invalid conversion from ‘void*’ to ‘sph_groestl_big_context*’ [-fpermissive]
  groestl_big_close(cc, 0, 0, dst, 48);
                                     ^
groestl.c:2949:1: note:   initializing argument 1 of ‘void groestl_big_close(sph_groestl_big_context*, unsigned int, unsigned int, void*, size_t)’
 groestl_big_close(sph_groestl_big_context *sc,
 ^
groestl.c: In function ‘void sph_groestl384_addbits_and_close(void*, unsigned int, unsigned int, void*)’:
groestl.c:3090:38: warning: invalid conversion from ‘void*’ to ‘sph_groestl_big_context*’ [-fpermissive]
  groestl_big_close(cc, ub, n, dst, 48);
                                      ^
groestl.c:2949:1: note:   initializing argument 1 of ‘void groestl_big_close(sph_groestl_big_context*, unsigned int, unsigned int, void*, size_t)’
 groestl_big_close(sph_groestl_big_context *sc,
 ^
groestl.c: In function ‘void sph_groestl512_init(void*)’:
groestl.c:3097:26: warning: invalid conversion from ‘void*’ to ‘sph_groestl_big_context*’ [-fpermissive]
  groestl_big_init(cc, 512);
                          ^
groestl.c:2874:1: note:   initializing argument 1 of ‘void groestl_big_init(sph_groestl_big_context*, unsigned int)’
 groestl_big_init(sph_groestl_big_context *sc, unsigned out_size)
 ^
groestl.c: In function ‘void sph_groestl512(void*, const void*, size_t)’:
groestl.c:3104:32: warning: invalid conversion from ‘void*’ to ‘sph_groestl_big_context*’ [-fpermissive]
  groestl_big_core(cc, data, len);
                                ^
groestl.c:2907:1: note:   initializing argument 1 of ‘void groestl_big_core(sph_groestl_big_context*, const void*, size_t)’
 groestl_big_core(sph_groestl_big_context *sc, const void *data, size_t len)
 ^
groestl.c: In function ‘void sph_groestl512_close(void*, void*)’:
groestl.c:3111:37: warning: invalid conversion from ‘void*’ to ‘sph_groestl_big_context*’ [-fpermissive]
  groestl_big_close(cc, 0, 0, dst, 64);
                                     ^
groestl.c:2949:1: note:   initializing argument 1 of ‘void groestl_big_close(sph_groestl_big_context*, unsigned int, unsigned int, void*, size_t)’
 groestl_big_close(sph_groestl_big_context *sc,
 ^
groestl.c: In function ‘void sph_groestl512_addbits_and_close(void*, unsigned int, unsigned int, void*)’:
groestl.c:3118:38: warning: invalid conversion from ‘void*’ to ‘sph_groestl_big_context*’ [-fpermissive]
  groestl_big_close(cc, ub, n, dst, 64);
                                      ^
groestl.c:2949:1: note:   initializing argument 1 of ‘void groestl_big_close(sph_groestl_big_context*, unsigned int, unsigned int, void*, size_t)’
 groestl_big_close(sph_groestl_big_context *sc,
 ^
groestl.c: At global scope:
groestl.c:3122:1: fatal error: opening dependency file obj/groestl.d: No such file or directory
 }
 ^
compilation terminated.
makefile.unix:191: recipe for target 'obj/groestl.o' failed
make: *** [obj/groestl.o] Error 1
[/root/wallets/gmcash/src]$
Post
Topic
Board Announcements (Altcoins)
Re: [DYOR] Do Your Own Research [x11][PoW/PoS][Bounties!][Pools!][Giveaway live!]
by
BartoszN1990
on 02/03/2018, 01:27:31 UTC
last block mining at

Quote
86973   d64bb64bdcd75ea853733a3dfd3564fa6356ae58ac8139f45cfbbbbe04c89c87   1   12.52602739   Wed, 28 Feb 2018 10:19:23 GMT

explorel down or coin dead ?
Post
Topic
Board Announcements (Altcoins)
Re: [DYOR] Do Your Own Research [x11][PoW/PoS][Bounties!][Pools!][Giveaway live!]
by
BartoszN1990
on 26/02/2018, 10:35:57 UTC
Dev ?? Life ? Any news ?
Post
Topic
Board Announcements (Altcoins)
Re: [DYOR] Do Your Own Research [x11][PoW/PoS][Bounties!][Pools!][Random rewards!]
by
BartoszN1990
on 12/02/2018, 23:38:15 UTC
Happy Mining !! [DYOR]

Stablish pool quick payout !

0.5% Fee !!

Quote
Port: 3008, Diff: 8
Port: 3032, Diff: 32
Port: 3256, Diff: 256
Port: 3999, Diff: 0.01

Quote

Post
Topic
Board Announcements (Altcoins)
Re: [MMB] Mambo Coin X11 POW+POS+High ROI masternodes
by
BartoszN1990
on 12/02/2018, 20:35:08 UTC
Quote
   Address   Balance (MMB)   
1   mbTfN7PJqD4gGtToRiBpCcHXxvxw764iuz   3389999.99990000 (MMB)      99.52%

Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [PoS + Masternodes] Motile Coin [MIE] [PRESALE] [AIRDROP] [BOUNTY]
by
BartoszN1990
on 12/02/2018, 20:33:15 UTC
it is scam ;/

https://github.com/MotileCoin/MotileCoin

Quote
Coin Name : Motile Coin

Ticker : MIE

Coin Type : POW + POS

MAXIMUM BLOCK SIZE : 3 MB

Block Time : 120 Sec Approx

MINIMUM STAKE AGE : 24 Hr

Coin Maturity : 63

MAX SUPPLY : 64,000,000 Coins

RPC Port: 7217

Network Port: 7218

no minable but post minable ! SCAM ALERT !
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [B3] B3Coin | POS/POD | Self Moderated Thread
by
BartoszN1990
on 02/02/2018, 01:25:25 UTC
Quote
Coin is dead i keep this coin 100 k from 5 months and wallet newer stake . There is no exchange volumen and news :/  anybody have any news about this coin ? Any guture of this ??

after 4 week aga no staking wallet dead no sync ;/ only some exchange keep this coin for trading but .. it looks like dead project dev not reply no movment ... so mad ..
Post
Topic
Board Announcements (Altcoins)
Re: [DYOR] Do Your Own Research [x11][PoW/PoS][Bounties!][Pools!][Random rewards!]
by
BartoszN1990
on 02/02/2018, 01:24:29 UTC
anybody can explain how to mining on wallet ;/ ? i try to use some comand on wallet console but all dont work .. other wallet accept it dyor no ;/ dev can we spect any update about solo mining or other solution to dont usse multipool ?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [Phantomx] coin -> online currency [PNX] | Pow/PoS X11 Masternode
by
BartoszN1990
on 02/02/2018, 01:22:25 UTC
PNX PNX !!  Grin Good time to buy some more masternodes .. i remebret time when pnx was at 100 sat Cheesy we have 3000 k sat now corection so ... dump more for buy more more Cheesy when we see new exchange to make more volum and give chance to show world PNX !!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]Aspectcoin POW/POS, X11, Masternode High ROI
by
BartoszN1990
on 02/02/2018, 01:20:28 UTC
any news about this coin when we can spect swap or how etc ? i try to find any news on comunity but quite...

2. anybody are allow sell 500 coin i need it to set up masternode ;/ mining end so ... this is only one way to set up mn Cheesy

please priv me
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][WSX][WeAreSatoshi]X11|PoS/PoW|CryptoAsian 5+ POD|In-Wallet Trading|Casino
by
BartoszN1990
on 02/02/2018, 01:18:22 UTC
does anybody mining this coin on x11 antminer d3 ? i have some problem to set up on prohashing i cant find any other pool to mining this coin. If anybody can create other pool priv of multipool please send me priv . anyway i thing pthis project is future and can make good profit on 3-6 months...
Post
Topic
Board Announcements (Altcoins)
Re: [DYOR] Do Your Own Research [x11][PoW/PoS][Bounties][Random Block Rewards!]
by
BartoszN1990
on 31/01/2018, 05:30:02 UTC
any place i can buy this yet? or only able to mine and stake?




We are working on acquiring funds for exchange listing - until then, mining & staking Smiley

Really, the yobit price wasn't bad to get going.

At least setup a discord where people can do private trades and potentially you can trade some premine for funds to get listing?

Slack and discord links are in the OP, feel free to message DYOR on either channel Smiley

dev how to solo mining ? on wallet or create pool ?
Post
Topic
Board Announcements (Altcoins)
Re: [DYOR] Do Your Own Research [x11][Slack Live][Bounties][Random Block Rewards!]
by
BartoszN1990
on 30/01/2018, 17:01:09 UTC
Hi can i please ask how to mine solo ? how to create wallet for mining solo ? Any tourial please ?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][WSX][WeAreSatoshi]X11|PoS/PoW|CryptoAsian 5+ POD|In-Wallet Trading|Casino
by
BartoszN1990
on 30/01/2018, 02:04:17 UTC
mining pool address?

 try to mine it solo, difficulty is low 
 use given nodes, bootstrap file to sync 
 if you have any trouble with wallet  just let me know

Can i please ask how to mine solo on this coin ?? okease pm me or reply on post
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [B3] B3Coin | POS/POD | Self Moderated Thread
by
BartoszN1990
on 23/01/2018, 19:49:16 UTC
Coin is dead i keep this coin 100 k from 5 months and wallet newer stake . There is no exchange volumen and news :/  anybody have any news about this coin ? Any guture of this ??
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [ICO] cryptoimprovementfund.io $CIF
by
BartoszN1990
on 23/01/2018, 19:45:36 UTC
Does anybody know when coin show up on exchange ? And wich exchange ? Any target price  ?
Post
Topic
Board Mining (Altcoins)
Re: Gateless Gate Sharp 1.2.6: zawawa's open-source dual ETH/XMR/PASC/LBC/FTC miner
by
BartoszN1990
on 23/01/2018, 09:54:26 UTC
This software is same like nicehash ?? Anybody can explain i can put my exchange btc address ? I put nicehash adres and mining fiew days i make 10$ but no received this on my adres. Hiw  i can withdrawal or male payment ??