Bitcoin Forum
May 28, 2024, 09:57:56 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 »
601  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 24, 2015, 04:00:46 PM
I installed dependencies and i am still having trouble. I have setup a masternode for Dash on a Linux server before, the part I am having the most trouble with is attempting to compile the Linux wallet from the source code. So if anyone can compile the Linux wallet for me and upload it I will send you 15 crave. I am sure many others would benefit from this as well, so i will put up this bounty. Smiley

Which do you want.. the qt or the daemon?  I can upload either to mega

Edit: here you go... the qt..

https://mega.co.nz/#!SEUVWaQJ!ui9ICYOdKWay3GK69HVKQgAw6jE5s_QKYpdTeTJce8o

and to verify it:
Code:
sha256sum crave-qt
fde8c22a10bb1a658735fed0b7ddef63e91f2a0b7365539f4c3e420e8267bdc1  crave-qt






602  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 24, 2015, 02:51:14 PM

or you can setup some copy folders and do infinite wallets. I have 11 running on one windows machine. 1 is normal, with normal data directory, the rest are masternodes with a custom directory I even renamed them all so i know which is acting up in task manager if any need reboots.


For those wondering,  its the same basic method on linux too.  (copy the folders and use -datadir=  )

its true, i just have hard time finding the original datadir on linux because im a noob. also my linux nodes with a setup like this didnt all show up on the crave.ninja. though my windows ones dont all either. they all get payouts within reason so ive let it slide.

Whichever works best for you, is best !   I haven't had problems on either windows or linux



I wish I could get this working though....  




ICM fixing the syncing problem should really be a priority... So many new users have this problem.

Working on trying to linearize the blockchain data to create a bootstrap.dat that will import...
If someone else wants to help too.. you run these python scrypts..

Construct a linear, no-fork, best version of the blockchain.
https://github.com/bitcoin/bitcoin/tree/master/contrib/linearize

So we can get a decent bootstrap.dat for importing ...

Well... trying to create the hashlist.txt I'm getting this:
Code:
./linearize-hashes.py linearize.cfg > hashlist.txt
JSON-RPC: error at height 46552 :  {u'message': u'Block number out of range.', u'code': -1}

I'm assuming that maybe it just finished, since that was the latest block when I did that.

Edit:  Now when trying to create the bootstrap.dat .. I get:
Code:
./linearize-data.py linearize.cfg
Read 46552 hashes
Genesis block not found in hashlist

And bootstrap.dat file is not created Sad  

Any suggestions?



Edit:  Ah, I see this is hardcoded in linearize-data.py...  I need to put the correct one for crave in there.

Code:
line 294 	if not "000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f" in blkmap:
print("Genesis block not found in hashlist")




603  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 24, 2015, 02:46:12 PM
So now when i put in the command "make" i get the message "-bash: make: command not found". What am i doing wrong now?

You didn't do,  you need to do all those apt-get installs first.
sudo apt-get install build-essential

Make sure you do the Get dependencies step!!

Code:
#Get dependencies
sudo apt-get install git
sudo apt-get install automake autoconf
sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev libminiupnpc-dev
#First compile libsecp256k1
cd ~
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
git reset a0d3b8
git add .
git reset --hard
./autogen.sh
./configure
make
sudo make install
cd ..
sudo ldconfig

#Next compile crave-qt
git clone https://github.com/industrialcoinmagic/crave.git

cd ~/crave
mkdir src/obj/crypto

qmake "USE_UPNP=-"
make

604  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 24, 2015, 02:43:11 PM

or you can setup some copy folders and do infinite wallets. I have 11 running on one windows machine. 1 is normal, with normal data directory, the rest are masternodes with a custom directory I even renamed them all so i know which is acting up in task manager if any need reboots.


For those wondering,  its the same basic method on linux too.  (copy the folders and use -datadir=  )
605  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 24, 2015, 02:01:15 PM
There, I fixed the instructions.

Code:
#Get dependencies
sudo apt-get install git
sudo apt-get install automake autoconf
sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev libminiupnpc-dev
#First compile libsecp256k1
cd ~
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
git reset a0d3b8
git add .
git reset --hard
./autogen.sh
./configure
make
sudo make install
cd ..
sudo ldconfig

#Next compile crave-qt
git clone https://github.com/industrialcoinmagic/crave.git

cd ~/crave
mkdir src/obj/crypto

qmake "USE_UPNP=-"
make

One last note:
If you get an error like .. make: *** [obj/crypto/hmac_sha256.o] Error 1
make sure you did this step:
mkdir src/obj/crypto

Then re-compile,  should work!



606  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 24, 2015, 10:19:03 AM
vol still falling, what do you think?

Pump and dump trolls are gone,  and people are mainly waiting to see what comes next in this project

607  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 23, 2015, 11:44:57 PM
It would be great if a compiled version of the Linux wallet could be uploaded. Not everyone has the ability to compile a binary from source code, myself included lol. Smiley

Its basically just a couple commands for debian based...

Code:
#First compile libsecp256k1
sudo apt-get install git
cd ~
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
git reset a0d3b8
git add .
git reset --hard
./autogen.sh
./configure
make
sudo make install
cd ..
sudo ldconfig

#Next compile crave-qt
git clone https://github.com/industrialcoinmagic/crave.git

sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev libminiupnpc-dev

cd ~/crave

qmake "USE_UPNP=-"
make
I will try it again with these codes, thanks.

One last note:
If you get an error like .. make: *** [obj/crypto/hmac_sha256.o] Error 1
Then do this:
mkdir obj/crypto

Then re-compile,  should work!


608  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 23, 2015, 10:53:43 PM
It would be great if a compiled version of the Linux wallet could be uploaded. Not everyone has the ability to compile a binary from source code, myself included lol. Smiley

Its basically just a couple commands for debian based...

Code:
#First compile libsecp256k1
sudo apt-get install git
cd ~
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
git reset a0d3b8
git add .
git reset --hard
./autogen.sh
./configure
make
sudo make install
cd ..
sudo ldconfig

#Next compile crave-qt
git clone https://github.com/industrialcoinmagic/crave.git

sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev libminiupnpc-dev

cd ~/crave

qmake "USE_UPNP=-"
make

609  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 23, 2015, 07:41:37 PM
ICM fixing the syncing problem should really be a priority... So many new users have this problem.

Working on trying to linearize the blockchain data to create a bootstrap.dat that will import...
If someone else wants to help too.. you run these python scrypts..

Construct a linear, no-fork, best version of the blockchain.
https://github.com/bitcoin/bitcoin/tree/master/contrib/linearize

So we can get a decent bootstrap.dat for importing ...

Well... trying to create the hashlist.txt I'm getting this:
Code:
./linearize-hashes.py linearize.cfg > hashlist.txt
JSON-RPC: error at height 46552 :  {u'message': u'Block number out of range.', u'code': -1}

I'm assuming that maybe it just finished, since that was the latest block when I did that.

Edit:  Now when trying to create the bootstrap.dat .. I get:
Code:
./linearize-data.py linearize.cfg
Read 46552 hashes
Genesis block not found in hashlist

And bootstrap.dat file is not created Sad 

Any suggestions?





610  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 23, 2015, 05:34:47 PM
ICM fixing the syncing problem should really be a priority... So many new users have this problem.

Working on trying to linearize the blockchain data to create a bootstrap.dat that will import...
If someone else wants to help too.. you run these python scrypts..

Construct a linear, no-fork, best version of the blockchain.
https://github.com/bitcoin/bitcoin/tree/master/contrib/linearize

So we can get a decent bootstrap.dat for importing ...
611  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 23, 2015, 02:12:57 AM
Its nice that masternodes are still somewhat inexpensive to acquire.
 Smiley
612  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 22, 2015, 07:36:30 PM
Do you ever look at an old water pump that you do by hand?

You have to press down and up. 
613  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 22, 2015, 04:09:03 PM
@MightyKnight
First, don't advertise coins in our thread please.

Second,
18m coin supply with 20% pos staking

No thanks!!  Inflated crap coin.
614  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 22, 2015, 02:09:19 AM
ProcessMessage(dseep, 116 bytes) FAILED
Misbehaving: 73.160.105.30:30104 (2 -> 3)
ProcessMessage(dseep, 116 bytes) FAILED
Misbehaving: 71.61.206.57:30104 (0 -> 1)
ProcessMessage(dseep, 116 bytes) FAILED
Misbehaving: 71.58.124.108:30104 (0 -> 1)
ProcessMessage(dseep, 116 bytes) FAILED
Misbehaving: 71.58.124.108:30104 (1 -> 2)
ProcessMessage(dseep, 116 bytes) FAILED
socket recv error 104

Whatever I do I can't sync both on windows wallet and on linux VPS.

Stuck at block 32712.

Same here, always sticks there.  
Had to copy folders from ~/.crave   copy database, txleveldb and blk0001.dat from a good download that you did do.
I can only get crave v1.4.0 to sync past 32712 & 32713 - even then sometimes the older version won't sync.  Newer version definitely gets stuck there.

i was just about to say ask rocco ,  Cheesy

Yea !! I don't know why I have such a problem with that all the time lol
 Smiley
615  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 22, 2015, 02:04:44 AM
ProcessMessage(dseep, 116 bytes) FAILED
Misbehaving: 73.160.105.30:30104 (2 -> 3)
ProcessMessage(dseep, 116 bytes) FAILED
Misbehaving: 71.61.206.57:30104 (0 -> 1)
ProcessMessage(dseep, 116 bytes) FAILED
Misbehaving: 71.58.124.108:30104 (0 -> 1)
ProcessMessage(dseep, 116 bytes) FAILED
Misbehaving: 71.58.124.108:30104 (1 -> 2)
ProcessMessage(dseep, 116 bytes) FAILED
socket recv error 104

Whatever I do I can't sync both on windows wallet and on linux VPS.

Stuck at block 32712.

Same here, always sticks there.  
Had to copy folders from ~/.crave   copy database, txleveldb and blk0001.dat from a good download that you did do.
I can only get crave v1.4.0 to sync past 32712 & 32713 - even then sometimes the older version won't sync.  Newer version definitely gets stuck there.

616  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 21, 2015, 11:03:34 PM
Can someone post me this cool signature like goblynn have , want to have it too  Smiley

Code:
[right]
[color=black]◥[/color][color=red]◣[/color][color=black]◥[/color][color=red]◣[/color][color=black]◥[/color][color=red]◣[/color]  [size=20pt]☠[/size] [url=https://bitcointalk.org/index.php?topic=997356.0][b][color=red][size=15pt]CRAVE[/size][/color][/b][/url] [size=20pt]☠[/size] [font=Helvetica]Embraces the privacy movement[/font] [size=20pt]☠[/size]   [color=black]◥[/color][color=red]◣[/color][color=black]◥[/color][color=red]◣[/color][color=black]◥[/color][color=red]◣[/color]
[color=black]◥[/color][color=red]◣[/color][color=black]◥[/color][color=red]◣[/color][color=black]◥[/color][color=red]◣[/color]    [color=red][i][u]Your Market. Your Blockchain Business. Your Profit.[/u][/i][/color]    [color=black]◥[/color][color=red]◣[/color][color=black]◥[/color][color=red]◣[/color][color=black]◥[/color][color=red]◣[/color]
[/right]
617  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 21, 2015, 04:27:07 PM
Surge Protector is the next big feature, will be the first in-wallet user interface for creating and managing multi-sigs.  Using stealth addresses.

edit: meant Surge Protector  Kiss

Thanks for the update !  Smiley
618  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 21, 2015, 02:14:46 PM
Fair enough, there are stealth addresses, though not a particularly hard hitting feature compared to the competition at least, compared to ring signatures and coin mixing for example. Though it would be very cool if dark send is implemented in CRAVE since we do have the masternode network to support it. Cool

I agree more coin mixing would be great. 

As far as the comment made about coin coin control by waffles,  that i've used and works great !


619  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 21, 2015, 01:44:35 PM
You are correct, I should have said this coin does not presently have any anonymization of transactions, which tends to be the focus for anonymous coins since it is relatively easy to obfuscate your IP even using something as simple Bitcoin.
Well in the case of transactions, you forgot this feature..  

I think that is also meant to help obfuscate your IP address and is not related to the anonymization of transactions.

I think you mean anonymization of addresses,  seeing how it clearly states "transactions" in the feature description.

In turn,  there is framework for stealth addresses.. you can see it in the client, I'm not sure if its working as I haven't used it yet.

620  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | Markets Soon =Embrace The Dark= on: April 21, 2015, 01:36:35 PM
You are correct, I should have said this coin does not presently have any anonymization of transactions, which tends to be the focus for anonymous coins since it is relatively easy to obfuscate your IP even using something as simple Bitcoin.

Well in the case of transactions, you forgot this feature..  





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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!