Search content
Sort by

Showing 20 of 173 results by heal
Post
Topic
Board Português (Portuguese)
Re: Por que tão poucas pessoas frequentam a aba local do Bitcointalk ??
by
heal
on 06/10/2020, 02:26:00 UTC
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.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN](ZUKA) Zukacoin POS + MN / Quark - INSTANT - PRIVATE
by
heal
on 11/08/2020, 18:52:32 UTC
res
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] BITBLOCKS (BBK) POS + MASTERNODES /INSTANT TRANSACTIONS / 0 FEE
by
heal
on 10/08/2020, 17:54:31 UTC
GREAT COIN  Grin Grin
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] BITBLOCKS (BBK) POS + MASTERNODES /INSTANT TRANSACTIONS / 0 FEE
by
heal
on 28/04/2020, 18:53:07 UTC
Bitblocks has a pump, a Dump...

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

Post
Topic
Board Announcements (Altcoins)
Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo
by
heal
on 17/10/2019, 23:12:16 UTC
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
Post
Topic
Board Altcoin Discussion
Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
by
heal
on 17/10/2019, 13:07:15 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo
by
heal
on 14/10/2019, 11:03:25 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo
by
heal
on 14/10/2019, 00:20:15 UTC
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/
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo
by
heal
on 13/10/2019, 16:21:38 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo
by
heal
on 13/10/2019, 12:46:41 UTC
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)
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo
by
heal
on 13/10/2019, 07:37:19 UTC
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
Post
Topic
Board Announcements (Altcoins)
Topic OP
[ANN]King's stake(King) POW + POS / 3000% - 6000% ROI / X13 algo
by
heal
on 13/10/2019, 02:53:15 UTC
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.



Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [NEWC] New Cash Coin ✅🚀🌟 ( newcash.exchange ) 🌟🚀✅
by
heal
on 03/10/2019, 03:12:32 UTC
Reserved
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] BITBLOCKS (BBK) POS + MASTERNODES /INSTANT TRANSACTIONS / 0 FEE
by
heal
on 01/10/2019, 23:26:27 UTC
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] BBKPAY online payments with BitBlocks (BBK)
by
heal
on 01/10/2019, 16:35:31 UTC
 Grin Grin Grin This is a great change for BitBlocks!!!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] BITBLOCKS (BBK) POS + MASTERNODES /INSTANT TRANSACTIONS / 0 FEE
by
heal
on 20/06/2019, 15:16:30 UTC
NICE PUMP!!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] BITBLOCKS (BBK) POS + MASTERNODES /INSTANT TRANSACTIONS / 0 FEE
by
heal
on 17/06/2019, 17:54:43 UTC
BitBlocks is a great project. why the price is so low? Huh Huh Huh
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [MN] [PoS] Sapphire Core - Social Media Platform
by
heal
on 17/06/2019, 17:42:32 UTC
Any link to discord?
Post
Topic
Board Announcements (Altcoins)
Re: 🚀🔥 ⚒ (NEW)[ANN](POWN) Pownodes POW + MN / Quark algo / BOUNTY ⚒ 🔥 🚀
by
heal
on 30/05/2019, 14:06:32 UTC
Invite challenge has started
https://discord.gg/h86nXxQ