Bitcoin Forum
May 13, 2024, 02:01:40 PM *
News: Latest Bitcoin Core release: 27.0 [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 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 ... 102 »
201  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Bela — Powering the Belacam Social Media Economy on: December 07, 2018, 06:10:21 AM
Crypto...death  1 year since last posting here....wow
202  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Dogethereum | Fork 10 000:1 of DOGE on: December 07, 2018, 06:08:26 AM
still alive ?
203  Alternate cryptocurrencies / Altcoin Discussion / Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw on: December 05, 2018, 03:54:55 AM
so I followed the guide https://github.com/EidasCoin/Eidas/blob/master/doc/windows-cross-compile.md but receive error

src/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);
                                                             ^
src/bignum.h: In member function 'bool CBigNum::isOne() const':
src/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);
                              ^
src/bignum.h: In member function 'bool CBigNum::operator!() const':
src/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);
                               ^
src/bignum.h: In member function 'CBigNum& CBigNum::operator+=(const CBigNum&)':
src/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))
                                   ^
src/bignum.h: In member function 'CBigNum& CBigNum::operator*=(const CBigNum&)':
src/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))
                                         ^
src/bignum.h: In member function 'CBigNum& CBigNum::operator<<=(unsigned int)':
src/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))
                                         ^
src/bignum.h: In member function 'CBigNum& CBigNum::operator>>=(unsigned int)':
src/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)
                            ^
src/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))
                                         ^
src/bignum.h: In member function 'CBigNum& CBigNum::operator++()':
src/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()))
                                               ^
src/bignum.h: In member function 'CBigNum& CBigNum::operator--()':
src/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()))
                                             ^
src/bignum.h: In function 'const CBigNum operator+(const CBigNum&, const CBigNum&)':
src/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))
                           ^
src/bignum.h: In function 'const CBigNum operator-(const CBigNum&, const CBigNum&)':
src/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))
                           ^
src/bignum.h: In function 'const CBigNum operator-(const CBigNum&)':
src/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));
                                           ^
src/bignum.h: In function 'const CBigNum operator*(const CBigNum&, const CBigNum&)':
src/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))
                                 ^
src/bignum.h: In function 'const CBigNum operator/(const CBigNum&, const CBigNum&)':
src/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))
                                       ^
src/bignum.h: In function 'const CBigNum operator%(const CBigNum&, const CBigNum&)':
src/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))
                                   ^
src/bignum.h: In function 'const CBigNum operator<<(const CBigNum&, unsigned int)':
src/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))
                                 ^
src/bignum.h: In function 'bool operator==(const CBigNum&, const CBigNum&)':
src/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); }
                                                                      ^
src/bignum.h: In function 'bool operator!=(const CBigNum&, const CBigNum&)':
src/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); }
                                                                      ^
src/bignum.h: In function 'bool operator<=(const CBigNum&, const CBigNum&)':
src/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); }
                                                                      ^
src/bignum.h: In function 'bool operator>=(const CBigNum&, const CBigNum&)':
src/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); }
                                                                      ^
src/bignum.h: In function 'bool operator<(const CBigNum&, const CBigNum&)':
src/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); }
                                                                       ^
src/bignum.h: In function 'bool operator>(const CBigNum&, const CBigNum&)':
src/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 src/addrman.h:9:0,
                 from src/net.h:20,
                 from src/main.h:10,
                 from src/kernel.h:7,
                 from src/txdb-leveldb.cpp:17:
                ^
src/txdb-leveldb.cpp: In member function 'bool CTxDB::LoadBlockIndex()':
src/txdb-leveldb.cpp:409:160: warning: unknown conversion type character 'l' in format [-Wformat=]
 nt height=%d, modifier=0x%016"PRIx64, pindex->nHeight, pindex->nStakeModifier);
                                                                              ^
src/txdb-leveldb.cpp:409:160: warning: too many arguments for format [-Wformat-extra-args]
Makefile.Release:10281: recipe for target 'build/txdb-leveldb.o' failed
make: *** [build/txdb-leveldb.o] Error 1


i have this version of libssl installed
libssl1.0.0 is already the newest version (1.0.2n-1ubuntu5.1).

Any help will be appreciated

I am working on Novacoin Clone older version ofcourse

You need to downgrade libssl-dev check the coin's docs/build_unix readme or other doc files for the required libssl dependency version.
otherwise try version 1.0.2g  (https://www.openssl.org/source/old/1.0.2/)
204  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DOGE] Dogecoin - very currency many coin - v1.10.0 on: October 15, 2018, 02:51:40 PM
i have 1.200.000 DOGE half bought in 2015 when it was super super cheap, the other half bought before the spike in may 2017(total investment about 600-700 euros). i HODLED even in january 2018 when only in DOGE i had 17.000 euros.....i will hold or change part in BTC or cash some if it gets really high. we'll see . i also own BTC and other cryptos. i'm assessing the situation. if DOGE gets listed in coinbase in my opinion this will go to 0.05 $ and then 0.10 $.....

what do you think?

https://cryptoblockwire.com/dogecoin-coinbase-listing/

HODL !!

So far I seen coins pump upon listing with CB.  This is great news, such wow !
205  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] HoloToken (HOT): Holo The Distributed Hosting Platform on: October 09, 2018, 11:15:34 AM
any news?? Smiley))

don't jinx it Smiley))
206  Economy / Scam Accusations / Re: BitexBay Is a scam Exchange on: October 07, 2018, 06:42:31 PM
If the exchange is a true scam, then why are there no reports here that nobody has been able to withdraw their funds ? Can anybody here confirm (screenshots) that no withdrawals were successful???

And if so, we can report the site to the hosting provider:  https://www.alibabacloud.com/report#abuse
and e-mail provider: https://mail.qq.com/contact_us_english.html

If you search then there are lots of topic about bitexbay scam. and they deleted all their post which they posted on by those account. Now they are opening new accounts and promoting via new accounts.

I've seen it, again i'll repeat this once more... if it's a scam where's the withdrawals that didn't successfully process ?

I just did a withdrawal of BTC from their exchange yesterday that was sent and confirmed to my trex account (after arbing doge across the exchange 3-10% profit and then withdrawing):

207  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Bitexbay.com reviews please on: October 07, 2018, 05:50:30 PM
208  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Bitexbay.com reviews please on: October 07, 2018, 05:45:25 PM
I'd avoid it at all costs.

Three of their accounts at Bitcointalk have been removed, not exactly sure why as with it it removes all the scam accusations in those threads, its like giving them a free way to get back as they simply register a new account and go from there.

We paid them a 0.15 BTC listing for two trading pairs, after all the scam accusations came in I disputed the payment and requested a removal of our token. To our surprise Paypal didn't decide the case in our favor despite the account being registered to a certain Miaoqi Su from Singapore. No reference to China or the US at all.

After some digging I found more information and confronted them with it, which they neither denied or confirmed, instead they chose to ignore it completely.

It appears they are pretending to be based in China and the US while running the exchange from Singapore. i suppose its illegal without the needed licenses and that being the reason they try to hide their identity. They just made one mistake, accepting the listing fee through Paypal that revealed their true identity.

The father of this Miaoqi girl is an expert in python, machine learning, and anything else you need to know to set up a crypto currency exchange so I suppose his Paypal account has already been banned and uses his daughters name instead. I'm not sure what kind of lies they came up with to win the Paypal dispute, it could very well be that they denied any involvement in the exchange and pretended the money was for something entirely different.

Hmm...

I traded btc/doge and initiated a BTC withdrawal that was honored and received to my trex account as of today.
209  Economy / Scam Accusations / Re: BitexBay Is a scam Exchange on: October 07, 2018, 09:26:29 AM
I'd avoid it at all costs.

Three of their accounts at Bitcointalk have been removed, not exactly sure why as with it it removes all the scam accusations in those threads, its like giving them a free way to get back as they simply register a new account and go from there.

We paid them a 0.15 BTC listing for two trading pairs, after all the scam accusations came in I disputed the payment and requested a removal of our token. To our surprise Paypal didn't decide the case in our favor despite the account being registered to a certain Miaoqi Su from Singapore. No reference to China or the US at all.

After some digging I found more information and confronted them with it, which they neither denied or confirmed, instead they chose to ignore it completely.

It appears they are pretending to be based in China and the US while running the exchange from Singapore. i suppose its illegal without the needed licenses and that being the reason they try to hide their identity. They just made one mistake, accepting the listing fee through Paypal that revealed their true identity.

The father of this Miaoqi girl is an expert in python, machine learning, and anything else you need to know to set up a crypto currency exchange so I suppose his Paypal account has already been banned and uses his daughters name instead. I'm not sure what kind of lies they came up with to win the Paypal dispute, it could very well be that they denied any involvement in the exchange and pretended the money was for something entirely different.
You have found this scam thread after being scammed. If you search earlier then you could stay away from being scammed.

If the exchange is a true scam, then why are there no reports here that nobody has been able to withdraw their funds ? Can anybody here confirm (screenshots) that no withdrawals were successful???

And if so, we can report the site to the hosting provider:  https://www.alibabacloud.com/report#abuse
and e-mail provider: https://mail.qq.com/contact_us_english.html
210  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sprouts🌱(SPRTS) - Revival Cryptocurrency with Hardfork [PoW/PoS] on: October 03, 2018, 12:26:57 AM
try to list on stex.com, might still be doing free listings
211  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] HoloToken (HOT): Holo The Distributed Hosting Platform on: September 30, 2018, 02:33:04 PM
All the projects coming up as Ethereum killer failed. Instead of trying to promote it as Ethereum killer, one has to realize it needs to be tested at the ETH level. It's really far from that level now. Lots of things to achieve.

Qtum and Cardano both made similar claims, both failed. Starting out a project on such a claim when one such as this one is currently an ETH token in and of itself is scammy at best !
212  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DOGE] Dogecoin - very currency many coin - v1.10.0 on: September 29, 2018, 11:26:23 AM
https://www.bitexbay.com/Home/Orders/index/currency/DOGE-BTC.html

interesting spread...

last sell order 108 sats...




Did a test trade, guess they really buying for over 100 sats :O

Wow it is fastest way to make quick profit but liquidity option are very limited I don't think anybody could sell huge amount of coins. It is just fun but other exchanges who have big volume are more safer and trusted.

Very true, one would need some patience to try to liquidate their stash on such exchanges. but it could be possible.
213  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DOGE] Dogecoin - very currency many coin - v1.10.0 on: September 29, 2018, 04:30:07 AM
https://www.bitexbay.com/Home/Orders/index/currency/DOGE-BTC.html

interesting spread...

last sell order 108 sats...




Did a test trade, guess they really buying for over 100 sats :O
214  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DOGE] Dogecoin - very currency many coin - v1.10.0 on: September 29, 2018, 02:30:56 AM
https://www.bitexbay.com/Home/Orders/index/currency/DOGE-BTC.html

interesting spread...

last sell order 108 sats...
215  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]🌱🌾GanjaCoin™ Recreational Marijuana license application UNDERWAY✅💫🚀🌛 on: September 28, 2018, 11:32:41 PM
https://play.google.com/store/apps/details?id=org.mystphysx.wallet.GanjaProject_Qt

GanjaCoin on Google Play! Can now easily purchase Ganja products using your phone right at the shop

As well as stake your coins and / or control and monitor your masternode directly from your phone !
216  Alternate cryptocurrencies / Announcements (Altcoins) / Re: | STRATIS | The first blockchain developed for businesses |Full POS on: September 28, 2018, 10:01:38 PM
say whatever you want trademark, your investment is going down the shitter.

always easy to find Strat, scroll down to lowest volume and losers on Binance. That is how much interest there is in Strat.

Forever you shall live in your basement.

Sounds like you're the one at the bottom look up  Cheesy
217  Alternate cryptocurrencies / Announcements (Altcoins) / Re: | STRATIS | The first blockchain developed for businesses |Full POS on: September 28, 2018, 03:05:31 AM
Strat is a dead coin, roadmap just released and yet volume is already collapsing. 57 btc on binance..pathetic....absolutely pathetic.

Don't think it will stay over a dollar much longer.

lmao your brain is dead for such an ignorant comment
218  Alternate cryptocurrencies / Announcements (Altcoins) / Re: | STRATIS | The first blockchain developed for businesses |Full POS on: September 27, 2018, 02:02:44 AM
***!!!~~~ATTENTION~~~!!!***

Please update your wallets to v2.0.0.5 if you haven't done so. This is a MANDATORY update!!!


https://github.com/stratisproject/stratisX/releases/tag/v2.0.0.5
219  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BYTEBALL: Totally new consensus algorithm + private untraceable payments on: September 27, 2018, 01:57:02 AM
with beeb going offline. Are there any alternatives to blackbyte trading besides p2p in the wallet ?
220  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DOGE] Dogecoin - very currency many coin - v1.10.0 on: September 25, 2018, 01:23:07 PM
A cup has been formed on the chart between the last 2 days, positive movement ahead  Cool
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 ... 102 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!