Pages:
Author

Topic: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨MasterNodes🔨| - COIN OF YOUR DREAMS! - page 50. (Read 167492 times)

legendary
Activity: 1169
Merit: 1000
someone have a valid conf file?

i am an error with mine


find one ...it is ok
newbie
Activity: 46
Merit: 0
What is the max supply of this coin? 21000000?

22M


I think we need more miners. When the price oscillates around the limit of $ 2, actually buying 1000DSR in one transaction, the majority is bought for over $ 3. Of course, you can have fun buying a little from time to time, but the're people who would buy up to 10000DSR at a price of 1.9$ -2.2$ in one transaction. We have too few miners, because the currency on the market is not enough. It's my reflection, maybe I'm wrong. I predict the price in January at the level of 8$. Remember my words. That is why I say that we need more miners.
newbie
Activity: 15
Merit: 0
What is the max supply of this coin? 21000000?
full member
Activity: 285
Merit: 102
Looks like the mobile wallet is working. I think this is going to be an interesting coin for masternode implementation.
newbie
Activity: 3
Merit: 0
Why can I not be able to mine this coin using cuda 9 miner? I noticed same thing with most neoscrypt coins like vivo, innova and onions. The miner will just be counting the blocks
https://github.com/KlausT/ccminer/releases works for me, have you tried it?
this worked well for me
newbie
Activity: 2
Merit: 0
Everytime I try to setup the Masternode i get the error masternode not capable: masternode not in masternode list
I tried to run it on a windows server.
Please help Smiley
sr. member
Activity: 377
Merit: 250
Why can I not be able to mine this coin using cuda 9 miner? I noticed same thing with most neoscrypt coins like vivo, innova and onions. The miner will just be counting the blocks

At me the same, writes a mistake in CUDA - now I shake CUDA 9.1 can helps.
newbie
Activity: 27
Merit: 0
Why can I not be able to mine this coin using cuda 9 miner? I noticed same thing with most neoscrypt coins like vivo, innova and onions. The miner will just be counting the blocks
https://github.com/KlausT/ccminer/releases works for me, have you tried it?
newbie
Activity: 76
Merit: 0
Why can I not be able to mine this coin using cuda 9 miner? I noticed same thing with most neoscrypt coins like vivo, innova and onions. The miner will just be counting the blocks
newbie
Activity: 6
Merit: 0
Is there any bounty or maybe airdrop?
member
Activity: 129
Merit: 11
My masternode received a reward today, but it was 4.8 DSR instead of 5 DSR.
So i'm wondering, what is the reason for receiving 0.2 DSR less per block?
Suddenly total block reward went from 25 (20 POW, 5 MN) to 24 (19.2 POW, 4.8 MN)

EDIT: From Discord "Block reward is controlled by: 2222222/(((Difficulty+2600)/9)^2)"
full member
Activity: 378
Merit: 121
"SWISSREALCOIN - FIRST REAL ESTATE CRYPTO TOKEN"
Hi all. Is it possible for one purse to start immediately 2 MASTERNODS?
member
Activity: 112
Merit: 10
My masternode received a reward today, but it was 4.8 DSR instead of 5 DSR.
So i'm wondering, what is the reason for receiving 0.2 DSR less per block?
newbie
Activity: 27
Merit: 0
Congratulations Devs, keep working ! Moon is soon Smiley
If you need any help, just tell me Wink
member
Activity: 117
Merit: 10
Hi all. I'm happy with the growth of the coin. Do not tell me: is expected to launch on other exchanges? If so, when?
newbie
Activity: 56
Merit: 0
Dear Devs,

To achieve a better tomorrow, you do need to work on UI and stuff, people are visual animals. DESIRE has a beautiful name. Now we also need a beautiful UI.

Ugly wallet won't last long. An good looking android wallet is also fundamental.

Keep working Devs!

All the efforts will be paid.

Cheers!
full member
Activity: 420
Merit: 100
Everyday have Runtime error in my wallet! Sombdy met such problem?
newbie
Activity: 4
Merit: 0
Here are my steps for fixing the WATCHDOG EXPIRED Status on Desire (DSR) Masternode

https://steemit.com/desire/@jwhale/fix-watchdog-expired-status-on-desire-dsr-masternode


For all those running the masternode trough VPS here is the solution for the watchdog error that worked out for me after trying for 3 days, first of all I want to clarify that this is only if you are setting up the masternode from scratch, like I did after reinstalling my server for 5 times:

If you head to the website: https://sonofatech.com/how-to-setup-a-desire-masternode/ you will have just to follow all the instructions until you get to this code line:


cd ~;
wget https://github.com/lazyboozer/Desire/releases/download/Desire-v.0.12.2.1/desire-0.12.2.1-linux.tar.gz ;
cd desire;
tar xzvf desire-0.12.2.1-linux.tar.gz;


After learning a bit of linux I could finally spot a misspelling there, basically cd ~; sends you to the main directory, after that you ask to download the  desire-0.12.2.1-linux.tar.gz through the command wget, but as you can see cd Desire; is sending you to the desire folder and the command tar xzvf its an order to extract the compressed file .gz, but if you download the file in one folder and then try to extract it in another one it makes no sense right?, so as I do not know for which one of the folders is originally destinated to be extracted I downloaded and extracted it on both as follows :

cd ~;
wget https://github.com/lazyboozer/Desire/releases/download/Desire-v.0.12.2.1/desire-0.12.2.1-linux.tar.gz ;

tar xzvf desire-0.12.2.1-linux.tar.gz;

cd Desire;

wget https://github.com/lazyboozer/Desire/releases/download/Desire-v.0.12.2.1/desire-0.12.2.1-linux.tar.gz ;

tar xzvf desire-0.12.2.1-linux.tar.gz;

Right, this may be not related to the sentinel (the exe that fixes the watchdog timeout isssue) but just in case is good to have it done right and for those following the only nice guide around which is this one of Sonofatech I'm sure it will be usefull, right, now we go to the point of sentinel, once you get to the following code lines:



wget https://github.com/ZonnCash/sentinel/releases/download/v1.1.0-win64/sentinel-lin64 ;

chmod +x sentinel-lin64;

echo “desire_conf=`pwd`/desire.conf” sentinel.conf;

Instead of entering that code line, and once I realized that there was a new version (1.1.0.3) of the sentinel on github,  I just changed the old file link for the new one like this:


wget https://github.com/ZonnCash/sentinel/releases/download/v1.1.0.3/sentinel-lin64 ;

chmod +x sentinel-lin64;

echo “desire_conf=`pwd`/desire.conf” sentinel.conf;


Follow the remaining part of the guide step by step as normal until you get to to this code line:

sudo ufw allow 9919/tcp

As I previously had the error  "IPv6 address not found" when running sentinel manually (you will see how to do that down to the end of this post) I tried, jus in case, changing the port 9919 to 9918 (The why is because I had to change the RPC port to 9918 because another error  I was getting when opening the local wallet, as I had set up the port 9919 both on the masternode.conf and the RPC port in the desire.conf, to fix it I had to change the RPC one to 9918 and that is why I believe allowing 18 instead of 19 worked for me)

so the code line I used instead is:
sudo ufw allow 9918/tcp


After that just follow the guide and the video guide until the end, and once you finish and get to open your local wallet (the one on your computer) you will see the status: WATCHDOG_TIMEDOUT


What you do is go in to your putty,log in and launch Sentinel manually by tipping the following lines:

cd .desirecore/

./sentinel-lin64

And select the option one: press 1 and then enter.

It might happen that you get the watchdog error again after a few hours, so simply manually run sentinel using the 2 above commands again.


I hope this helped you out, for me it was the heaven after struggling for days.



If this helped you also please feel free to leave a tip and let me know!

Donation address: DPgRGFa62tDmuhVyV2oLpkBNXdmJZ33uwo


Enjoy your masternode!

P.D: sentinel runs every 1 minute, you have to allow your wallet to get updated, for me it took about 10 mins, then you will see the PRE_ENABLED status, and once the other masternodes recognize you you will finally see the status ENABLED, but it takes some time, be patient!.













newbie
Activity: 3
Merit: 0
Here are my steps for fixing the WATCHDOG EXPIRED Status on Desire (DSR) Masternode

https://steemit.com/desire/@jwhale/fix-watchdog-expired-status-on-desire-dsr-masternode
Pages:
Jump to: