Bitcoin Forum
September 28, 2025, 10:24:42 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 9 »
1  Local / Português (Portuguese) / Re: Por que tão poucas pessoas frequentam a aba local do Bitcointalk ?? on: October 06, 2020, 02:26:00 AM
Redes sociais como Facebook, instagram, reedit foram criadas para serem viciantes, como os foruns nao tem esse algoritimo as pessoas preferem utilizar outras redes sociais e tambem muitos brasileiros olham mais a aba principal do bitcointalk em ingles, eu era um desses que quase nunca olhava a aba local.
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BITBLOCKS (BBK) POS + MASTERNODES /INSTANT TRANSACTIONS / 0 FEE on: August 10, 2020, 05:54:31 PM
GREAT COIN  Grin Grin
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BITBLOCKS (BBK) POS + MASTERNODES /INSTANT TRANSACTIONS / 0 FEE on: April 28, 2020, 06:53:07 PM
Bitblocks has a pump, a Dump...

But is working
I think in the future will be a great coin
BBKPAY is working well too
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo on: October 19, 2019, 10:56:32 AM
Kings stake is now on Crex24
https://crex24.com/pt/exchange/KING-BTC

5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo on: October 17, 2019, 11:12:16 PM
wallet dont sync...  Undecided

Add nodes:

addnode=45.32.238.57
addnode=66.42.117.99

Where to add them?

You need create a .conf file in folder:
%appdata%/King

Rename the file as King.conf
6  Alternate cryptocurrencies / Altcoin Discussion / Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw on: October 17, 2019, 01:07:15 PM
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/)


Its easy to downgrade the MXE openssl version guys

just:
Code:
make openssl1.0 MXE_PLUGIN_DIRS=plugins/examples/openssl1.0/
https://github.com/mxe/mxe/issues/2303
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo on: October 14, 2019, 11:03:25 AM
If you want to buy a King coin, then there is a link where it has been trading for a long time https://fedlio.com/trade/king_btc  Wink

Trade is working but people cannot withdraw or deposit King

This exchange does not work well.
The exchange changed the name. This is bitebtc, Its a scam exchange, people cannot withdraw coins, do not send any cryptocurrency to this exchange.
They will block your account when you try withdraw
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo on: October 14, 2019, 12:20:15 AM
Your website is down?




Reading the previous posts makes you think that this will just be another pump and dump story.
Attracting users with unusually high percentage ROI with unresolved history?
We know that kind of business approach is not sustainable so the likelihood that this will be a short lived one is very high.

The website is online
I update the link in ann
https://kingstake.xyz/
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo on: October 13, 2019, 04:21:38 PM
Dev Why Reset Blockchain ?

many other people have lost their coins

No Swap old KING coins  = SCAM !!!


Old Thread : https://bitcointalk.org/index.php?topic=4824512.0 launched in 2018
New Blockchain: https://bitcointalk.org/index.php?topic=5192453.0


waste of time and money
Be careful, don't buy it, another SCAM !!!
another DUMP coin, and nothing more.

- The old chain is no longer safe
- The last block have 135 days old
- Its impossible to swap old coins with safety
- The circulation supply of the old chain has almost 1b of coins
- The old chain has no market
- No one bought the old coins
- Old chain has a fail launch

The only people who lost money/time were the miners of the old network.
Because they mined and had nowhere to sell the coins

Calling scam is easy, and I understand you, bitcointalk have many scams
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo on: October 13, 2019, 12:46:41 PM
wallet dont sync...  Undecided

Add nodes:

addnode=45.32.238.57
addnode=66.42.117.99




Beware of this project, the developer abandoned this project a year ago but now he revived again. There are two possibilites that might happen with this project;
1. he wants to sell the coin again and then abandon the project all over again
2. he attaches a virus to the wallet

just do not do anything with this project, mark it as a scam project because it does not do any good for you.

reference
https://bitcointalk.org/index.php?topic=4824512.msg46452481#msg46452481

Same exact project was there  1 year ago


He sold same coins, then he abandoned it, and he starts it again now, selling coins again


I'm relaunching the coin
in 2018 we didn't make sales
I forced to list on BiteBTC but we could not trade because it was impossible to withdraw coins
https://fedlio.com/trade/king_btc (BitBTC has a new name: fedlio)
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo on: October 13, 2019, 07:37:19 AM
Dear dev, Your coin already counts in my calculator https://calcminer.info/ I have a question - and what exchange do you plan in the first place?

First exchange will be crex24
we intend to list as soon as possible
12  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo on: October 13, 2019, 02:53:15 AM
Kings stake is now listed on Crex24!
https://crex24.com/pt/exchange/KING-BTC

https://kingstake.xyz/




https://github.com/Forech-dev/Kingsstake/releases


http://explorer.kingstake.xyz/




addnode=45.32.238.57
addnode=66.42.117.99




Github: https://github.com/Forech-dev/Kingsstake
Discord: https://discord.gg/ZguR9Zm
Twitter: https://twitter.com/KINGSTAKE1

 Huh Attention Miners: Proof-of-work rewards start only after block 2000.
check our last block in explorer api: http://explorer.kingstake.xyz/api/getblockcount

Sale:

---Closed---- total BTC: 0.017119

More info via discord:
https://discord.gg/rUQ6CGd


Kings stake is a cryptocurrency designed to reward those who keep coins in their wallet.
Proof-of-stake ensures that this reward is possible.
with a high ROI% and a maturation time of 12h only Holders will be rewarded
with superblocks

The Proof-of-work method provides an alternative for those not
can buy the coin

We want a coin with maximum transparency without exposing team members
then all transactions made by the team will be justified,
this includes sale


-The team will not be able to use Proof-of-stake until block 10000
-Sale coins will not stake
-If we don't sell all the coins until the end of the sale, 50% of the balance will be burned and 50% added to the team balance.



13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NEWC] New Cash Coin ✅🚀🌟 ( newcash.exchange ) 🌟🚀✅ on: October 03, 2019, 03:12:32 AM
Reserved
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BITBLOCKS (BBK) POS + MASTERNODES /INSTANT TRANSACTIONS / 0 FEE on: October 01, 2019, 11:26:27 PM
https://twitter.com/BitBlocks_/status/1179071458011762688
15  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] BBKPAY online payments with BitBlocks (BBK) on: October 01, 2019, 04:35:31 PM
 Grin Grin Grin This is a great change for BitBlocks!!!
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BITBLOCKS (BBK) POS + MASTERNODES /INSTANT TRANSACTIONS / 0 FEE on: June 20, 2019, 03:16:30 PM
NICE PUMP!!
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BITBLOCKS (BBK) POS + MASTERNODES /INSTANT TRANSACTIONS / 0 FEE on: June 17, 2019, 05:54:43 PM
BitBlocks is a great project. why the price is so low? Huh Huh Huh
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [MN] [PoS] Sapphire Core - Social Media Platform on: June 17, 2019, 05:42:32 PM
Any link to discord?
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🚀🔥 ⚒ (NEW)[ANN](POWN) Pownodes POW + MN / Quark algo / BOUNTY ⚒ 🔥 🚀 on: May 30, 2019, 02:06:32 PM
Invite challenge has started
https://discord.gg/h86nXxQ
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🚀🔥 ⚒ (NEW)[ANN](POWN) Pownodes POW + MN / Quark algo / SALE ⚒ 🔥 🚀 on: May 30, 2019, 12:24:29 PM
Pre-sale has ended
Pages: [1] 2 3 4 5 6 7 8 9 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!