Pages:
Author

Topic: [ANN] DROIDZ [DRZ][QUBIT][WALLET w/Bittrex-C-cex alert][YOBIT - C-CEX - BITTREX] - page 71. (Read 100207 times)

full member
Activity: 152
Merit: 100
Here you can take a fixed rent rigs cheaper than NiceHash ))
https://www.betarigs.com/list?miner_type=11
sr. member
Activity: 462
Merit: 250
I love to trade
an hour later and still dont have my coins  Angry Angry Angry
Why you need your coin? you want to sell? Are you in hurry?
I don't have my coin too, seem like that I'm angry? I'm not, but I'm Hungry, I have lunch now.
sr. member
Activity: 462
Merit: 250
What is the block time? 620 blocks in 160 mins, that is about 4 blocks per min.
legendary
Activity: 1778
Merit: 1000
an hour later and still dont have my coins  Angry Angry Angry
I received mine immediately. Contact alexrossi
full member
Activity: 205
Merit: 100
mac wallet: https://mega.co.nz/#!W9dHxKIT!FVDxJWP36dr8y0H7cHOOLnrc7w4jxSI_sSrHD2VX5rw
vtotal: https://www.virustotal.com/en/file/9a0b38372335a588017634b18855e697875f0471cbe7f31a5bc889ac0d90e66d/analysis/1429637890/

donations are always welcome  Smiley
DRZ addy: 5vhwNCFNQux14SFUdNGbxg27UZQKzbEf2P 69bTFBM9RKaSsWGuQCf36pQwLKvqRX4rMv
I was trying to donate from yobit, and it says "Withdrawal address is denied."

Thats my bad. Address is 69bTFBM9RKaSsWGuQCf36pQwLKvqRX4rMv
legendary
Activity: 1778
Merit: 1000
WHY DO PEOPLE SELL THIS COIN FOR CHEAP?

There are many people in this world who do not want others to be rich, they want to keep everybody down.
member
Activity: 98
Merit: 10
Call me the coin wrecker (;
an hour later and still dont have my coins  Angry Angry Angry
full member
Activity: 205
Merit: 100

meh, I just compiled the code from the git repo. It should work on osx 10.9+

You can check my post history, I haven't released a mac wallet that I modified in a malicious manner so far.

Better safe than sorry though.
sr. member
Activity: 462
Merit: 250
I love to trade
sr. member
Activity: 462
Merit: 250
I love to trade
LOL just 2 hours age, and you want news? Seem like the guys who ask to share HASH in his pool!!!
DRZ
member
Activity: 63
Merit: 10
DroidZ team developers
hero member
Activity: 868
Merit: 1000
Would be very nice if Bittrex would add DRZ, instant 10k sat!

30k minimum.
Only 5 millions coin.
newbie
Activity: 28
Merit: 0
Would be very nice if Bittrex would add DRZ, instant 10k sat!
full member
Activity: 240
Merit: 100
Droidz already on Alcurex and Yobit, why not Bittrex? We are waiting Cheesy

be sure to tweet @richiela and @bittrex to let them know we want DRZ added  Wink
Xmm
full member
Activity: 440
Merit: 100
Cant connect to Sprnova with hostname. Change to IP and now ok.

280X = 5.45 Mhz is it good speed?
sr. member
Activity: 350
Merit: 250
Droidz already on Alcurex and Yobit, why not Bittrex? We are waiting Cheesy
sr. member
Activity: 466
Merit: 250
Twitter Follow for no BS crypto: @SecretsOfCrypto
hi all!
I have this error when compiling on ubuntu14.04 lts.


g++: error: /home/marcos/Downloads/repohuman-master/src/leveldb/libleveldb.a: No such file or directory
g++: error: /home/marcos/Downloads/repohuman-master/src/leveldb/libmemenv.a: No such file or directory
make: *** [droidz-qt] Error 1



please help

You might need libdb dependencies. Can try:

sudo apt-get install libdb5.1-dev libdb5.1++-dev


Or maybe because you did not make the leveldb files? Try this:

cd src/leveldb/
make libleveldb.a
make libmemenv.a


For " sudo apt-get install libdb5.1-dev libdb5.1++-dev " I got this:
Fatal error: can't create build/qrc_bitcoin.o: Permission denied
make: *** [build/qrc_bitcoin.o] Error 1


For
 " cd src/leveldb/
make libleveldb.a
make libmemenv.a" I got this:
make: *** No rule to make target `libleveldb.a'.  Stop.
marcos@marcos-System-Product-Name:~/Downloads/repohuman-master/src$ make libmemenv.a
make: *** No rule to make target `libmemenv.a'.  Stop.
marcos@marcos-System-Product-Name:~/Downloads/repohuman-master/src$


First error is a permission issue. Try:

chmod 755 /home/marcos/Downloads/repohuman-master/src/leveldb/build_detect_platform
make /home/marcos/Downloads/repohuman-master/src/leveldb/libleveldb.a
make /home/marcos/Downloads/repohuman-master/src/leveldb/libmemenv.a

The first command seems to worok but the last two...

make: *** No rule to make target `/home/marcos/Downloads/repohuman-master/src/leveldb/libleveldb.a'.  Stop.

make: *** No rule to make target `/home/marcos/Downloads/repohuman-master/src/leveldb/libmemenv.a'.  Stop.

maybe can try this?

cd src/leveldb/
TARGET_OS=OS_WINDOWS_CROSSCOMPILE make libleveldb.a libmemenv.a


I entered the command and i got this:
util/env_win.cc:17:21: fatal error: shlwapi.h: No such file or directory
 #include
                     ^
compilation terminated.
make: *** [util/env_win.o] Error 1

Oops that was for windows  Grin. Maybe something like:
TARGET_OS=UNIX make libleveldb.a libmemenv.a

Sorry I have to head out. I don't even own any of these coins lol. I think you are pretty close to compiling it though. Dev should be able to help you out.

Best
full member
Activity: 205
Merit: 100
hi all!
I have this error when compiling on ubuntu14.04 lts.


g++: error: /home/marcos/Downloads/repohuman-master/src/leveldb/libleveldb.a: No such file or directory
g++: error: /home/marcos/Downloads/repohuman-master/src/leveldb/libmemenv.a: No such file or directory
make: *** [droidz-qt] Error 1



please help

You might need libdb dependencies. Can try:

sudo apt-get install libdb5.1-dev libdb5.1++-dev


Or maybe because you did not make the leveldb files? Try this:

cd src/leveldb/
make libleveldb.a
make libmemenv.a


For " sudo apt-get install libdb5.1-dev libdb5.1++-dev " I got this:
Fatal error: can't create build/qrc_bitcoin.o: Permission denied
make: *** [build/qrc_bitcoin.o] Error 1


For
 " cd src/leveldb/
make libleveldb.a
make libmemenv.a" I got this:
make: *** No rule to make target `libleveldb.a'.  Stop.
marcos@marcos-System-Product-Name:~/Downloads/repohuman-master/src$ make libmemenv.a
make: *** No rule to make target `libmemenv.a'.  Stop.
marcos@marcos-System-Product-Name:~/Downloads/repohuman-master/src$


First error is a permission issue. Try:

chmod 755 /home/marcos/Downloads/repohuman-master/src/leveldb/build_detect_platform
make /home/marcos/Downloads/repohuman-master/src/leveldb/libleveldb.a
make /home/marcos/Downloads/repohuman-master/src/leveldb/libmemenv.a

The first command seems to worok but the last two...

make: *** No rule to make target `/home/marcos/Downloads/repohuman-master/src/leveldb/libleveldb.a'.  Stop.

make: *** No rule to make target `/home/marcos/Downloads/repohuman-master/src/leveldb/libmemenv.a'.  Stop.

maybe can try this?

cd src/leveldb/
TARGET_OS=OS_WINDOWS_CROSSCOMPILE make libleveldb.a libmemenv.a


I entered the command and i got this:
util/env_win.cc:17:21: fatal error: shlwapi.h: No such file or directory
 #include
                     ^
compilation terminated.
make: *** [util/env_win.o] Error 1

yo, just replace the leveldb dir with the leveldb dir from a different coin you compiled earlier. This is the easy fix lel

EDIT: also, don't cross compile for windows if you want to run the wallet on linux Wink
Pages:
Jump to: