Search content
Sort by

Showing 17 of 17 results by cryptodrops
Post
Topic
Board Announcements (Altcoins)
Re: MECC - Millionaires Exchange Coin Club
by
cryptodrops
on 07/05/2018, 12:35:09 UTC
Looking forward on this coin project. Hope that more exchanges accept this coin and finish its own exchange platform.  Good luck MECC Team. Smiley
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Digital Cash (DCASH) - Let Digital Cash be your own Online Cash
by
cryptodrops
on 10/02/2018, 08:08:13 UTC
DCASH is trading on
 
https://coinscontrol.com/Trade

and https://crex24.com/exchange/DCASH-BTC
(CREX24 is not available in the US and the UK)




Nice! Available now in 2 exchanges. Looking forward for more exchanges and bigger ones too. Congrats on your project.  Smiley
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Business Network Incubator ($BNI) - Building and Growing Businesses
by
cryptodrops
on 27/01/2018, 13:37:03 UTC
Nice project development. Looking forward that this technology help more businesses grow.   Cool
Post
Topic
Board Announcements (Altcoins)
Re: Coinscontrol.com - THE FUTURE CRYPTO COINS TRADING AND EXCHANGE PLATFORM
by
cryptodrops
on 22/01/2018, 13:21:03 UTC
Let us wait for the dev response and let the support do their work. More power to you coinscontrol.com. I think they are not related to coinsmarkets or whatever exchange. Please have a little patience and help them to continue their project.  Cool
Post
Topic
Board Announcements (Altcoins)
Re: Royal Empire Coin [REC] - Looking For Mining Pools and Miners
by
cryptodrops
on 02/09/2017, 06:27:47 UTC
Dev the site is showing BTPL? why?
Blockchain not working?

The web dev put the wrong index that is the reason. I see that the website is fix now.

if Blockchain is not moving or your wallet is not synchronizing, try the Hobbyist conf file.

Post
Topic
Board Announcements (Altcoins)
Re: Royal Empire Coin [REC] - Looking For Mining Pools and Miners
by
cryptodrops
on 28/08/2017, 03:29:09 UTC
anyone please teach me how can i mine solo? not found any pool  Angry
Code:
setgenerate true -1
&
This is my RoyalEmpireCoin address for receiveng payments.
Code:
rL7D8UJyYHeHFWoVLek1hy8LoTLwPgB6NC

To solo mine:

Code:
miner -a skein -o http://127.0.0.1:20029 -u rL7D8UJyYHeHFWoVLek1hy8LoTLwPgB6NC -p password

setgenerate thing is not working on this one, it is hard coded I guess.
I don't know how someone suspect this as blake.
he should clarify what he had found out.

setgenerate true is working but cpu hashing on skein is kind of pointless Smiley
someone said, the algorithms advertised are conflicting, since they have blake on their github and skein on this ANN

https://github.com/royalempirecoin/REC-Project/tree/master/RoyalEmpireCoin-master

skein works for me, may be they will have dual algo mining? not sure.


it is skein , the dev just put the wrong read me file. I think it is updated now.
Post
Topic
Board Announcements (Altcoins)
Re: Royal Empire Coin [REC] - Looking For Mining Pools and Miners
by
cryptodrops
on 28/08/2017, 02:55:58 UTC
Anyone else running into compiling issues?

Code:
miner.cpp: In function ‘CBlock* CreateNewBlock(CReserveKey&, bool, int64_t*)’:
miner.cpp:106:5: error: ‘unique_ptr’ is not a member of ‘std’
     std::unique_ptr pblock(new CBlock());
     ^
miner.cpp:106:5: note: suggested alternatives:
In file included from /usr/include/boost/thread/csbl/memory/unique_ptr.hpp:16:0,
                 from /usr/include/boost/thread/future.hpp:40,
                 from /usr/include/boost/thread.hpp:24,
                 from util.h:24,
                 from core.h:10,
                 from main.h:8,
                 from txdb-leveldb.h:9,
                 from txdb.h:9,
                 from miner.cpp:7:
/usr/include/boost/move/unique_ptr.hpp:346:7: note:   ‘boost::movelib::unique_ptr’
 class unique_ptr
       ^
/usr/include/boost/move/unique_ptr.hpp:346:7: note:   ‘boost::movelib::unique_ptr’
miner.cpp:106:27: error: expected primary-expression before ‘>’ token
     std::unique_ptr pblock(new CBlock());
                           ^
miner.cpp:106:48: error: ‘pblock’ was not declared in this scope
     std::unique_ptr pblock(new CBlock());
                                                ^
miner.cpp: In function ‘void ThreadStakeMiner(CWallet*)’:
miner.cpp:558:9: error: ‘unique_ptr’ is not a member of ‘std’
         std::unique_ptr pblock(CreateNewBlock(reservekey, true, &nFees));
         ^
miner.cpp:558:9: note: suggested alternatives:
In file included from /usr/include/boost/thread/csbl/memory/unique_ptr.hpp:16:0,
                 from /usr/include/boost/thread/future.hpp:40,
                 from /usr/include/boost/thread.hpp:24,
                 from util.h:24,
                 from core.h:10,
                 from main.h:8,
                 from txdb-leveldb.h:9,
                 from txdb.h:9,
                 from miner.cpp:7:
/usr/include/boost/move/unique_ptr.hpp:346:7: note:   ‘boost::movelib::unique_ptr’
 class unique_ptr
       ^
/usr/include/boost/move/unique_ptr.hpp:346:7: note:   ‘boost::movelib::unique_ptr’
miner.cpp:558:31: error: expected primary-expression before ‘>’ token
         std::unique_ptr pblock(CreateNewBlock(reservekey, true, &nFees));
                               ^
miner.cpp:558:80: error: ‘pblock’ was not declared in this scope
         std::unique_ptr pblock(CreateNewBlock(reservekey, true, &nFees));
                                                                                ^
miner.cpp: In function ‘void RoyalEmpireCoinMiner(CWallet*)’:
miner.cpp:608:9: error: ‘unique_ptr’ is not a member of ‘std’
         std::unique_ptr pblocktemplate(CreateNewBlock(reservekey, false, &nFees));
         ^
miner.cpp:608:9: note: suggested alternatives:
In file included from /usr/include/boost/thread/csbl/memory/unique_ptr.hpp:16:0,
                 from /usr/include/boost/thread/future.hpp:40,
                 from /usr/include/boost/thread.hpp:24,
                 from util.h:24,
                 from core.h:10,
                 from main.h:8,
                 from txdb-leveldb.h:9,
                 from txdb.h:9,
                 from miner.cpp:7:
/usr/include/boost/move/unique_ptr.hpp:346:7: note:   ‘boost::movelib::unique_ptr’
 class unique_ptr
       ^
/usr/include/boost/move/unique_ptr.hpp:346:7: note:   ‘boost::movelib::unique_ptr’
miner.cpp:608:31: error: expected primary-expression before ‘>’ token
         std::unique_ptr pblocktemplate(CreateNewBlock(reservekey, false, &nFees));
                               ^
miner.cpp:608:89: error: ‘pblocktemplate’ was not declared in this scope
         std::unique_ptr pblocktemplate(CreateNewBlock(reservekey, false, &nFees));
                                                                                         ^
makefile.unix:179: recipe for target 'obj/miner.o' failed
make: *** [obj/miner.o] Error 1

i am just getting to it now let me run a bit and see if i get the same issues...one funny thing is on the ANN they say skein algo and on the github repo its blake


edit=
yep i am getting the very same crap
IMHO this is just another one of those coins.....
moving on to the next.... bye bye

Can you show us how to know that? It seem it is really a skein algo. The miner is working in skein algo. hmm.

https://image.prntscr.com/image/je6jRg-BQhqoOpu12VmHXw.png

Please show us about that so we can be aware.

Thanks.  Wink
Post
Topic
Board Announcements (Altcoins)
Re: [Ann] Sojourn, 29,800 coins left (Come for airdrop round 2!!!)
by
cryptodrops
on 18/07/2017, 04:17:27 UTC
Hi, I'd like to join round 2 airdrop , PM sent.
Thank you very much!   Wink
Post
Topic
Board Announcements (Altcoins)
Re: PIECOIN REBOOT
by
cryptodrops
on 24/06/2017, 19:55:00 UTC
I'm still watching this coin. I see a lot of progress and the price is getting nicer. Good luck Pie coin team.  Wink
 Cool
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Digital Money Bits (DMB) - Now trading on 3 Exchangers
by
cryptodrops
on 18/06/2017, 20:22:13 UTC
DMB IS A BABY COIN, NOT 1 MONTHS OLD. DONT THINK ABOUT SWAP, WITHIN 1 MONTH. EVERY TIME COIN SWAP WILL GOES AGAINST INVESTORS.
IF NO PLANING OF SWAP IN THE MIND OF DEV, THEN THIS DMB WILL RISE AGAIN STEADILY.

They are doing the swap because the old chain was mess up and someone abuse it. So it will be a must, so your coin still has the same value of the old one. Coin swapping is not in the original devs plan this is just a cure for this incident. This is the way they think to transfer your coin into the new chain so you wont lose it. Cool

If the dev doesn't care about his investors he can just abandon this one and create new without the swap. LoL.  Grin

keep on going dev, I know you can not please everybody, but this project has its good goals. Wink


Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Digital Money Bits (DMB) - Now trading on 3 Exchangers
by
cryptodrops
on 16/06/2017, 16:49:27 UTC

lol, now you're quoting yourself?...  Roll Eyes

You can post your wallet address and sign it. there is no way to fake that.

you don't have to post anything.

I am done with this premine coin with no proof of developer

Stop harassing the dev. He is true on his development plan. He is not the one who sold those DMBs earlier. He will never do that because he has his goals. Some miners yesterday abuse the volume produce from this particular block number #4267 ->http://digitalmoneybits.thecryptochat.net/block.php?height=4267. The dev team still looking on this issues occur in POW and POS. If he really wants to dump this project he will not reply to you and to those accusers and just run away like any other scammers have done.
 Cool

*Those who are mostly complains are those who did not even buy this coin. Geez! and just ask for airdrops and giveaways. Beggars!  Tongue

Heheh Peace ! Grin


Post
Topic
Board Wallet software
Re: Who experienced used Jaxx wallet? would like to ask something.
by
cryptodrops
on 13/06/2017, 02:27:23 UTC
I don't like jaxx, the bitcoin fee is way too much.  Sad
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]Tattoocoin & Tattoocoin Ltd. Ed. - Running on Twin Chain - First Time Ever!
by
cryptodrops
on 13/06/2017, 01:58:15 UTC
Awesome features for tattoo coin. Keep it up guys!  Wink
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HONEY] Honey - USE HONEY IN-GAME - Sweet
by
cryptodrops
on 08/06/2017, 15:51:02 UTC
wow honey for games, awesome program honey dev  Grin Looking forward for this coin Smiley
Post
Topic
Board Micro Earnings
Re: List Of BTC, LTC, DOGE, BLK, PPC & Dash Faucets Paying Through FaucetHub
by
cryptodrops
on 05/06/2017, 10:33:58 UTC
Faucethub is nice please include my faucet on your rotator... http://cryptodrops.net/

Thanks.
 Grin
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Digital Money Bits (DMB) - Now trading on CoinExchange!
by
cryptodrops
on 31/05/2017, 10:55:25 UTC
Thank you for the update dev. Looking forward for this new development and congrats for having 2 exchanges in an early stage Wink
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Soap Coin (SOAP) - Looking for Exchanges!
by
cryptodrops
on 31/05/2017, 10:49:05 UTC
Looking forward for this new quark type coin. Very interesting!  Cool