Author

Topic: [ANN] CRAVE 1st POS Masternodes | Dark Assets | I2P | Market =Embrace The Dark= - page 245. (Read 826716 times)

legendary
Activity: 938
Merit: 1000

How much crave is needed to run a masternode? I dont have any atm  Cheesy

500 needed for masternode.  and better guides, with pictures would be appreciated! 
Be sure to leave your donation address, I know I would tip you!

full member
Activity: 224
Merit: 100
But I do remember L&S in xst warning people. I was even there yelling at him to stop which you can see my post history. But when he sees a scam, he goes for the neck. At the time I hedged my sdc risk with xst so that was ANOTHER painful lesson to me (I fell for Cloak's vapor as well). I respect the guy for that though. He doesn't hold punches. I will freely admit that I dumped at 800k 100 crave that I had when I saw the train run out of moon juice. Whoever was pumping was only pushing a couple BTC towards your peak. I had nothing to do with the pump. As previously stated, I just noticed the trend and warned people and played very small amounts in the upswing. I wish I could have reversed the trend earlier, and even tried a couple times, because you guys would have had a steady price to land on or at least it wouldn't have been this bad. But I failed and it went to 800k because someone pumped it with about 1000btc. No one is out to get you Troublesome. The only conspiracy here was the one that was freely admitted during the event sourced below. Again, I am sorry for your losses because I have been there as you can see in my post history from cloak. I am definitely not a "SDC bot" Yaremi. Respect.

https://bitcointalk.org/index.php?topic=997356.msg11046669;topicseen#msg11046669

If you lost money on any coin "exposed" by longandshort, you lost money because a pump team dumped their coin at about the same time he was fudding.

Fud happens all the time in these threads as you will see. It's coincidence when the pump team dumps as a fud team trolls, except when they are one in the same.

SDC advertised vaporware at the same time as XST, XC, and half a dozen other coins advertised vapor ware. And did any of them deliver anything new? No.

Don't give credit here. Longandshort has an agenda and it's definitely not about saving the little guy. He's usually fudding during a dump because he's usually fudding and every coin gets dumped, even SDC.


I see exactly what you are talking about.

Of course you do, you are an idiot too.

Contrary to what you and your idiots friends will have everyone try and believe the facts remain set in forum history!

https://bitcointalksearch.org/topic/m.9182120

Go look and for fucks sake drop pit now please! You don't want to make a thread because you clearly have an agenda!
Live in denial all you want im not your scapegoat, kid!



Now you are regurgitating what the poster said that you quoted - "agenda"
Your link has nothing to do with exposing a scam.

I realize you need to call people names like "idiot". And I also realize that you can't help it.

It will all be ok...I promise.

Hush hush now

5 little monkeys jumping on the bed
one fell of and bumped his head
momma called the doctor and the doctor said,
no more monkeys jumping on the bed.

Feel better now, lil buddy?
sr. member
Activity: 841
Merit: 251
[1]+  Exit 127                ./craved
root@vultr:~# ./craved &
[1] 8719
root@vultr:~# ./craved: error while loading shared libraries: libboost_system.so.1.46.1: cannot open shared object file: No such file or directory

Pleas Help Sad(

You probably have a different boost lib, try to compile crave-qt

Be what commands to use to compile. Why is no one here will give instructions for beginners. I do not know how to compile and do as instructed.
legendary
Activity: 938
Merit: 1000
I pmed the dev about this a few days ago, but haven't received any response, nor has anything been done about these, so I'm posting this here now hoping it'll get some answers. This is not the message I sent, this is reworded for general users who I don't expect to know much about the code.

There are multiple things I've found in the code that seem like problems. In the masternode payment enforcement, the code for checking that masternodes are being paid is checking the wrong transaction. In btc(and pow coins like darkcoin which the code came from) the block reward is in the first transaction (vtx[0]), and in PoS forks like crave is, vtx[0] is always left empty and the block reward is in vtx[1]. It can be seen here https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2375 and https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2357 that the code was not updated to look in vtx[1], and continues to look at vtx[0]. It can also be seen a little higher up in the same function that the block verification does check that vtx[0] is empty https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2302 . Since block verification checks that vtx[0] is empty to even get to masternode payment verification, payment verification will never find an output to a masternode in that loop, and should reject all blocks, except it doesn't deadlock due to the next point.

The hard fork never happened. If you scroll up a little from the previous section, you'll see a flag used for enabling masternode enforcement. https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2341 Right below it checks it against a timestamp, and sets the flag to true if we're past the fork time. Before we actually use the flag, there's another condition calling the IsSporkActive function https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2341 which is capable of turning the flag back off. If you follow that function https://github.com/industrialcoinmagic/crave/blob/master/src/spork.cpp#L80 what happens in that call is it doesn't see that flag in the map, so heads into the else block where it copies SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT_DEFAULT to r, and then compares r to the current time. If you take a look at the value compared https://github.com/industrialcoinmagic/crave/blob/master/src/spork.h#L28 , and convert that timestamp(2428537599) to normal time ( http://www.epochconverter.com/ ), you'll see that the timestamp used is Dec 16 2046. Clearly this hasn't happened yet, so IsSporkActive returns false, and that causes it to set the flag back to false so the masternode payment enforcement code is skipped over. Until ICM quieted the logging, it could also be seen in the logs that the skipped message was still being logged after the fork supposedly happened.

Lastly at https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2320 the constant passed to IsSporkActive is the timestamp from before, not a spork ID, which causes the InstantX checks to be skipped.

Why don't you report these issues on github so we all can work on them (those who know how to code)  and eventually, maybe push commits.

Thanks for looking into this and reporting here,  if they really are issues

Edit:  Or maybe that's not how dev wants to use github,  I don't know... but it would just seem like a normal route as in how other projects do things.



legendary
Activity: 1526
Merit: 1002
Chipcoin Developer
Anyone in the need of a tutorial for setting up a masternode?

I can make a windows and linux guide for your home computer, and a windows/linux vps hot/cold version

How much crave is needed to run a masternode? I dont have any atm  Cheesy
fnz
newbie
Activity: 21
Merit: 0
[1]+  Exit 127                ./craved
root@vultr:~# ./craved &
[1] 8719
root@vultr:~# ./craved: error while loading shared libraries: libboost_system.so.1.46.1: cannot open shared object file: No such file or directory

Pleas Help Sad(

You probably have a different boost lib, try to compile crave-qt
full member
Activity: 224
Merit: 100

You know all that isn't true you are just being a troll pos that you alway will be.


Cryptonote uses a different curve, different libraries, and a whole different underlying core.

Shadow uses ring signatures to spend Shadow, which is created by sending SDC as an anonymous output.

The scheme is quite a bit different, in that it borrows concepts from zerocoin, with the minting and spending, and use ring signatures to make the inputs untraceable from the outputs.. Shadow is also using PoS instead of PoW.

Its a completely unique scheme and implementation

Stealth addresses where not cloned form cryptonote the unique duel key addresses are Shadows. Shadow did not have vaporware at the same time xst had vaporware you are full of crap.

You are offtopic and now so am i so i warn you now to stop.

Yup, and now the threats. Another symptom of being totally out of juice. Do you need me to make a speling error to help you?

If a post is off topic, just report it to the moderator. No need to make vague threats in public. I'm flattered that I get under your skin like this, but seriously if you are considering resorting to something that could compromise you later, then you need to take a step back from the keyboard.

SDC has a unique combination of features found in other coins. If anything is new, it's the token idea "borrowed" from zerocoin. I think I've acknowledged the novelty of that idea as implemented in SDC.

There's nothing to "expose" with CRAVE. A coin is a feature set. If the features are broken, then say so. But if nothing is broken, why spend so much energy on it except if you think the market cap of this coin is threatening the cap of your favorite? Wink


Thank you for making this clear as bell. I was beginning to think that no one else understood. Your candor is very much appreciated here.
sr. member
Activity: 841
Merit: 251
[1]+  Exit 127                ./craved
root@vultr:~# ./craved &
[1] 8719
root@vultr:~# ./craved: error while loading shared libraries: libboost_system.so.1.46.1: cannot open shared object file: No such file or directory

Pleas Help Sad(
sr. member
Activity: 308
Merit: 250
Millionaires Club 47
./craved &
[2] 29601
[1] Exit 127 ./craved
root@vultr:~# ./craved: symbol lookup error: ./craved: undefined symbol: secp256k1_start


Sad


Help someone what I'm doing wrong? Why do I get this message on the server?

Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev automake libdb++-dev libssl-dev git
Code:
sudo aptitude install libminiupnpc-dev
Code:
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
./autogen.sh
./configure
make
sudo make install
cd ..
ldconfig
wget http://104.207.135.209/craved
chmod 777 craved
Hi Yaremi..Maybe you can help?? Why I getting error with second master node if conf it's ok ??Error "you must setup masternode=1 in conf" But I'm sure that conf it's ok.
sr. member
Activity: 841
Merit: 251
./craved &
[2] 29601
[1] Exit 127 ./craved
root@vultr:~# ./craved: symbol lookup error: ./craved: undefined symbol: secp256k1_start


Sad


Help someone what I'm doing wrong? Why do I get this message on the server?

Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev automake libdb++-dev libssl-dev git
Code:
sudo aptitude install libminiupnpc-dev
Code:
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
./autogen.sh
./configure
make
sudo make install
cd ..
ldconfig
wget http://104.207.135.209/craved
chmod 777 craved

That's all I did. And now I have to do at the end of this command? : ./craved &
hero member
Activity: 668
Merit: 500

There's also richlist.eu, which also gives you an idea about the distribution and richlist: http://www.richlist.eu/crave
full member
Activity: 156
Merit: 100
full member
Activity: 224
Merit: 100
how many master nodes are there up and running?

you can check in the wallet console by typing: masternode count
or check here:
http://jj12880.azurewebsites.net/CraveCalc.aspx
or
https://crave.ninja/

it is currently 174, up by 20 in the last 24 hours
full member
Activity: 224
Merit: 100
Your comeback is that I made a grammatical mistake. You might want to take the next few months to clean up your own posts.
And it is actually coattails. I put a space...you left out a letter. mmmmk?

When they are down to scrutinizing your spelling, you know they have ran out of juice.


This seems to be their direction in general.
Thank you for actually noticing.

It was not spelling or a gram mistake, you got the metaphor wrong completely; like young biff did in back to the future "make like a tree and get outta here"  Roll Eyes

Ill ask one more time to get on topic. you two are way off it.

If I was young biff, I would be smacking you around calling you McFly. Hello? Hello? Anybody home? Think McFly, think.
Your standard bullying tactics compounded with the projection of Biff is classic.

You'll ask me one more time? I guess you think your run this joint or is that more of the biff'ing?
full member
Activity: 155
Merit: 100
how many master nodes are there up and running?
sr. member
Activity: 308
Merit: 250
Millionaires Club 47
I pmed the dev about this a few days ago, but haven't received any response, nor has anything been done about these, so I'm posting this here now hoping it'll get some answers. This is not the message I sent, this is reworded for general users who I don't expect to know much about the code.

There are multiple things I've found in the code that seem like problems. In the masternode payment enforcement, the code for checking that masternodes are being paid is checking the wrong transaction. In btc(and pow coins like darkcoin which the code came from) the block reward is in the first transaction (vtx[0]), and in PoS forks like crave is, vtx[0] is always left empty and the block reward is in vtx[1]. It can be seen here https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2375 and https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2357 that the code was not updated to look in vtx[1], and continues to look at vtx[0]. It can also be seen a little higher up in the same function that the block verification does check that vtx[0] is empty https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2302 . Since block verification checks that vtx[0] is empty to even get to masternode payment verification, payment verification will never find an output to a masternode in that loop, and should reject all blocks, except it doesn't deadlock due to the next point.

The hard fork never happened. If you scroll up a little from the previous section, you'll see a flag used for enabling masternode enforcement. https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2341 Right below it checks it against a timestamp, and sets the flag to true if we're past the fork time. Before we actually use the flag, there's another condition calling the IsSporkActive function https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2341 which is capable of turning the flag back off. If you follow that function https://github.com/industrialcoinmagic/crave/blob/master/src/spork.cpp#L80 what happens in that call is it doesn't see that flag in the map, so heads into the else block where it copies SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT_DEFAULT to r, and then compares r to the current time. If you take a look at the value compared https://github.com/industrialcoinmagic/crave/blob/master/src/spork.h#L28 , and convert that timestamp(2428537599) to normal time ( http://www.epochconverter.com/ ), you'll see that the timestamp used is Dec 16 2046. Clearly this hasn't happened yet, so IsSporkActive returns false, and that causes it to set the flag back to false so the masternode payment enforcement code is skipped over. Until ICM quieted the logging, it could also be seen in the logs that the skipped message was still being logged after the fork supposedly happened.

Lastly at https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2320 the constant passed to IsSporkActive is the timestamp from before, not a spork ID, which causes the InstantX checks to be skipped.
@industrialcoinmagic
Agree with few points.First.My old wallet before fork update was mine at masternode better.2.My second wallet giving me error ( you must add masternode=1 to conf) but I did that .I check out my conf and everything looks ok but masternode didnt start becauseof this error.I did delete 5 times wallet and now I'm scare that I've lost 500 coins from masternode.However I have backup wallet and also copy of wallet .Waiting until this f,,,wallet finally sync so I can see if I lost 500 coins or have them.
Update ...Finally my second wallet after 5 times deleted  is sync.Have that 500 coins .So it's ok except that I getting this  error when I like to set up second masternode at my second system. Error "you must set masternode=1 in the configuration" Here is my configuration
                                      maxconnections=100
rpcuser=myname
rpcpassword=my password
rpcport=9999
gen=0
server=1
daemon=1
reservebalance=9999999
masternodeaddr=my static ip:9999
masternode=1
masternodeprivkey=masternodeprivkey
rpcallowip=127.0.0.1
WHAT DA HELL IS WRONG WITH THIS CONF?Huh Maybe RPCPORT?Huh Help!!!!!!!!!!!
hero member
Activity: 672
Merit: 500
I pmed the dev about this a few days ago, but haven't received any response, nor has anything been done about these, so I'm posting this here now hoping it'll get some answers. This is not the message I sent, this is reworded for general users who I don't expect to know much about the code.

There are multiple things I've found in the code that seem like problems. In the masternode payment enforcement, the code for checking that masternodes are being paid is checking the wrong transaction. In btc(and pow coins like darkcoin which the code came from) the block reward is in the first transaction (vtx[0]), and in PoS forks like crave is, vtx[0] is always left empty and the block reward is in vtx[1]. It can be seen here https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2375 and https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2357 that the code was not updated to look in vtx[1], and continues to look at vtx[0]. It can also be seen a little higher up in the same function that the block verification does check that vtx[0] is empty https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2302 . Since block verification checks that vtx[0] is empty to even get to masternode payment verification, payment verification will never find an output to a masternode in that loop, and should reject all blocks, except it doesn't deadlock due to the next point.

The hard fork never happened. If you scroll up a little from the previous section, you'll see a flag used for enabling masternode enforcement. https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2341 Right below it checks it against a timestamp, and sets the flag to true if we're past the fork time. Before we actually use the flag, there's another condition calling the IsSporkActive function https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2341 which is capable of turning the flag back off. If you follow that function https://github.com/industrialcoinmagic/crave/blob/master/src/spork.cpp#L80 what happens in that call is it doesn't see that flag in the map, so heads into the else block where it copies SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT_DEFAULT to r, and then compares r to the current time. If you take a look at the value compared https://github.com/industrialcoinmagic/crave/blob/master/src/spork.h#L28 , and convert that timestamp(2428537599) to normal time ( http://www.epochconverter.com/ ), you'll see that the timestamp used is Dec 16 2046. Clearly this hasn't happened yet, so IsSporkActive returns false, and that causes it to set the flag back to false so the masternode payment enforcement code is skipped over. Until ICM quieted the logging, it could also be seen in the logs that the skipped message was still being logged after the fork supposedly happened.

Lastly at https://github.com/industrialcoinmagic/crave/blob/master/src/main.cpp#L2320 the constant passed to IsSporkActive is the timestamp from before, not a spork ID, which causes the InstantX checks to be skipped.
@industrialcoinmagic
newbie
Activity: 30
Merit: 0
Hi guys,
I bet that there are many people here that believe in this coin.
This also means many of you are probably stuck in a high rate, and would lose much money selling at this rate.
Do not sell your coins!
This dump is just a trick to buy in low again.

We are planning a new pump again.
As you, i am also stuck in a high rate, with much money.
Rate: 0.0072
So again, DO NOT SELL YOUR CRAVE!
Instead of selling your coins, PM ME WHEN YOU HAVE MONEY STUCK BECAUSE OF TROLLS AND DUMPERS.

WE WILL NOT ANN THE NEXT PUMP PUBLIC.
Instead of that. We will give the people that have faith in this coin and are stuck in a high rate a heads up start.

Mine now while it is still possible to get them cheap.


lol we believe you and by the way you do know pow is over  lol. your bags are really heavy

too much bag holders now in the crave price is going low dramatically and nobody knows who are dumping that coin.

The price will go back up.
Many will be working on this.
To many people are high holders...
fnz
newbie
Activity: 21
Merit: 0
./craved &
[2] 29601
[1] Exit 127 ./craved
root@vultr:~# ./craved: symbol lookup error: ./craved: undefined symbol: secp256k1_start


Sad


Help someone what I'm doing wrong? Why do I get this message on the server?

do a reset in secp256k1 to commit a0d3b89
Code:
git reset a0d3b89
legendary
Activity: 1960
Merit: 1156
./craved &
[2] 29601
[1] Exit 127 ./craved
root@vultr:~# ./craved: symbol lookup error: ./craved: undefined symbol: secp256k1_start


Sad


Help someone what I'm doing wrong? Why do I get this message on the server?

Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev automake libdb++-dev libssl-dev git
Code:
sudo aptitude install libminiupnpc-dev
Code:
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
./autogen.sh
./configure
make
sudo make install
cd ..
ldconfig
wget http://104.207.135.209/craved
chmod 777 craved
Jump to: