Search content
Sort by

Showing 20 of 58 results by mninfo
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] INTENSE COIN - Blockchain backed decentralized VPN - Hybrid PoW
by
mninfo
on 16/12/2017, 21:56:05 UTC
In for the airdrop!

I'm registering on Bit-Z asap!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] INTENSE COIN - Blockchain backed decentralized VPN - Hybrid PoW
by
mninfo
on 13/12/2017, 01:51:18 UTC
You can get the difficulty, reward and other stuff from the json api. Every pool has that. For example:
http://intensecoin.de:8117/stats
Look under network


very useful hint, thank you very much Smiley


Just to add on that. Query from the pool you are using the current difficulty, hashrate, etc.
Official pool is: http://45.32.171.89:8111/stats

Now, you can calculate your profitabily as:
If you are mining x H/s

Code:
profit = hashrate * 86400 / stats['network']['difficulty'] * stats['network']['reward']
coins = profit / stats['config']['coinUnits']

Also, note 1KH/s = 1024 H/s, 1MHash = 1024 KH/s = 1024*1024 H/s and so on! Multiply by 1024 not 1000.

For example, suppose you are at 1KH/s (1024 H/s) then you've got (more or less at writing time this values are correct):
Code:
profit = 1024 * 86400 / 312742295 * 162898140711 = 4.60832614 * 10^10
coins = 4.60832614 * 10^10 / 100000000 = 4.60832614 * 10^(10-8) = 460 ITNS/day

(yeah, already at 300M difficulty...)

Now, you can query
https://stocks.exchange/api2/ticker
And use ITNS ticker to find current change is 0.00000033 btc/ITNS, so
Code:
btc = coins * 0.00000033 = 460 * 0.00000033 = 0.0001518

You can even calculate the average block time (in seconds) on your current pool by:
Code:
estimate = stats['network']['difficulty'] / stats['pool']['hashrate']
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨MasterNodes🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 10/12/2017, 22:04:16 UTC
ok, here are my preliminary findings.

with sentinel:
-sentinel runs [hooray]
-masternode starts [hooray] from wallet on Mac, running on VPS
-Status remains watchdog_expired and the Active time does not change [edit - time is now changing showing it is running, still waiting on watchdog message to change.]

without sentinel running:
--masternode starts [hooray] from wallet on Mac, running on VPS
-Status remains watchdog_expired and the Active time does change [ex: -4m: -3s]

do I need to wait longer with sentinel running for that message and time to change?


Have you tried the restore option in the sentinel? It would require to resync, but its worth it
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨MasterNodes🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 10/12/2017, 19:08:36 UTC
sorry, just onboard here and did not see a prior message. But I am going to try the headless version you just posted. Will report as soon as possible, because this is what I'm doing - running it as a headless mn with local wallet (Mac). Thank you.

Don't worry, it was not for you at all Wink Let's hope it's solved
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨MasterNodes🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 10/12/2017, 18:57:36 UTC
Hey! How's it going? I have been pretty busy with work and couldn't take the time to write something.

Do you need anything else from me? or some improvements to sentinel?

Hello!

On Twitter some users asked about the version of Sentinel for the MAC OS. Do you have the option to compile it?

Regards.

Sadly I don't own a MAC... It should easy to build it though, simply clone the repo on a MAC with Python 2.7, and then run (from within the repo folder):
pip install -r requirements.txt
pip install pyinstaller
pyinstaller --onefile --paths=lib main.py

Funny enough I am having the exact same issue with Sentinel, have my VPS on 16.04 because it's not exactly new, right? cannot get sentinel running at all.
This is my first attempt at a masternode and I'm not a Linux newbie - the instructions remain convoluted at best. It's amazing so many have gotten this far.
Now I have read that even with the watchdog errors it is paying out so I'm going to wait and see but this seems like a very basic issue to resolve.
[...]
Do I really have to deploy a 14.04 instance of Ubuntu to get Sentinel running? Seriously? *FAIL*

(This rant is mostly focused towards Gehacktesmacher than tvanes, but well, I had to!)

Noone has said anything about ubuntu 14.04 nor 16.04, not even ubuntu! This is compiled on a debian sid and tested on both the debian and an ubuntu 16.04, so please, stfu Cheesy
Now, that being said, you (or however said it before) completely ignored my message where I said to try running it through xvfb-run, so yeah, nice!

And, still, I am as nice as to pull out another version just for you who run headless servers, try it out:
https://github.com/ZonnCash/sentinel/releases/tag/v1.1.0.3


Those of you that already have it running, no need to update.
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨MasterNodes🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 10/12/2017, 14:36:57 UTC
Hey! How's it going? I have been pretty busy with work and couldn't take the time to write something.

Do you need anything else from me? or some improvements to sentinel?
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨MasterNodes🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 01/12/2017, 00:01:21 UTC
Running a wallet/masternode on linux here and I have a question.
It looks like the latest 'sentinel' is expecting a X window to be present.
Code:
Xlib.error.DisplayNameError: Bad display name ""
Is there a workaround?

Have you seen my other reply?

Are you running it headless (without graphical interface)? If so, you might try running it through xvfb-run (apt-get install xvfb-run  first)
xvfb-run ./sentinel-lin64
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨MasterNodes🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 29/11/2017, 21:48:14 UTC
Code:
desire# ./sentinel-lin64
 File "site-packages/Xlib/support/unix_connect.py", line 61, in get_display
Xlib.error.DisplayNameError: Bad display name ""
[2228] Failed to execute script main


How fix?

Are you running it headless (without graphical interface)? If so, you might try running it through xvfb-run (apt-get install xvfb-run  first)

xvfb-run ./sentinel-lin64
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨CPU GPU MINING🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 23/11/2017, 22:23:04 UTC
Hey guys, I've been really busy lately, all of you who have errors, please try the new version:
https://github.com/ZonnCash/sentinel/releases/tag/v1.1.0.2

And when an error pops up, please attach/paste here the contents of the file "sentinel.log"

My MN error Microsoft Visual C++ Runtime Library (Windows VPS).

https://upic.me/i/ki/desire.png

I'm close and reopen every day, How to fix?

Please do the above!

My MN error Microsoft Visual C++ Runtime Library (Windows VPS).

https://upic.me/i/ki/desire.png

I'm close and reopen every day, How to fix?



New version of sentinel v1.1.0.1

/desire/sentinel, inifile:
collected 14 items / 2 errors

================================================================================ ERRORS ================================================================================
_________________________________________________________ ERROR collecting test/unit/models/test_proposals.py __________________________________________________________
ImportError while importing test module '******/desire/sentinel/test/unit/models/test_proposals.py'.
Original error message:                                                                                                                                                 
'No module named builtins'                                                                                                                                             
Make sure your test modules/packages have valid Python names.                                                                                                           
________________________________________________________ ERROR collecting test/unit/models/test_superblocks.py _________________________________________________________
ImportError while importing test module '******/desire/sentinel/test/unit/models/test_superblocks.py'.
Original error message:                                                                                                                                                 
'No module named builtins'                                                                                                                                             
Make sure your test modules/packages have valid Python names.                                                                                                           
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 2 errors during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
======================================================================= 2 error in 0.55 seconds ========================================================================

Help!!!

Is this using compiled my version of sentinel or are you "building"/"using" from source?
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨CPU GPU MINING🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 20/11/2017, 14:31:15 UTC
Looks good, thank you!

Could you also please add a -daemon option?
That makes it a bit easier to run.

And perhaps the options 1 and 2 should be command line arguments.
Default = running the sentinel (1) and maybe call the other one repair, argument: -repair (2)?


Umm.. About --daemon (I'll use the standard --, not -), I don't know up to which point I'll be able to do it. To avoid dependencies I am using pyinstaller, which defaults to opening a cli/cmd. In linux you can emulate daemon behaviour with "nohup ./sentinel-lin64 &", I don't think that's possible in Windows.

Good idea! I'll add commands, but I'll leave default behaviour as is (30secs to run sentinel), as it is the most "beginner" friendly approach. I'll add "--sentinel" and "--repair".

EDIT: Done! I'll add the windows build later tonight, linux is already there
https://github.com/ZonnCash/sentinel/releases/tag/v1.1.0.2

My masternode with previous version of Sentinel is working fine.
Do I still need to switch to this new vesion?
Thanks.

No need! If it is running fine, leave it as is Wink
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] VIVO - Masternodes, ASIC-Resistant, Secure, High MN Rewards, Decentralized
by
mninfo
on 20/11/2017, 01:15:56 UTC
Just to follow up, I've update sentinel. It can now fix the wallet and masternode for you (option 2 while starting, run if you still get WATCHDOG_EXPIRED).
https://github.com/ZonnCash/sentinel/releases/tag/v1.1.0.1

I have also fixed up the path for "sentinel.conf", some messages ago it was reported that it didn't work (and in fact, it didn't). Now it works just fine!
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨CPU GPU MINING🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 20/11/2017, 00:55:07 UTC
New version of sentinel

https://github.com/ZonnCash/sentinel/releases/tag/v1.1.0.1

This version includes an option to automatically fix the wallet and masternode if you still get WATCHDOG_EXPIRED. If it is running fine for you, just run sentinel. Please, before executing the fixing procedure, backup your wallet.dat file! The program will tell you to do so, do it!

If you get an error while running sentinel (I've received reports of so) upload the file "sentinel.log" that is found in the same folder as sentinel-win64.exe, and either post here the link or create an issue in that github.
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨CPU GPU MINING🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 19/11/2017, 09:59:58 UTC
Great news! For those of you who still have problems with masternodes, I've just finished a version of the standalone sentinel that has two options. I'll build and upload it tomorrow, I won't have my windows machine until them!

1) Run sentinel
2) Fix wallet and masternode

Option 2 automatically fixes the blockhain (just follow all steps) and checks if desire.conf has all the required optiosn (if not, it automatically adds them).

It couldn't be easier Cheesy

It would also bundle a fix where sentinel.conf wasn't found (it was looking in a wrong folder)
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] VIVO - Masternodes, ASIC-Resistant, Secure, High MN Rewards, Decentralized
by
mninfo
on 15/11/2017, 18:29:58 UTC


1. Make sure you are running v0.12.2.1

Where do I get this? I can only find 12.1.7
This method was designed for another coin so copy/paste was incorrect. 0.12.1.7 is the correct release fro VIVO.

Fixed on the main post! Thx!
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨CPU GPU MINING🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 15/11/2017, 18:22:43 UTC
Must I install Sentinel even though my masternode will run on VPS?
&
Is this method work on VPS?

I already try but not working it always fail and Watchdog Expire

Do you mean your own VPS or something like HostMNs?

1) If its the 1st case, yes, for sure, you need it.
2) If it is the 2nd case, I don't really know how the service works. Does the MN wallet (important MN wallet, not the cold wallet/collateral one) run on their machines or yours? If it runs on their end, then THEY must install sentinel. If it runs on yours, then its your job.

you Superman , thank you for your work , I will donate you want , I have everything working without a dog , but I know that a community with such a Superman will not be lost , thanks again mninfo !

Glad I could help Cheesy No need to donate, really, I was doing this because I love coding and cryptos are really exciting =P

mninfo, fyi - I've tried everything you said but when I put the following into console I get:  Method not found (code -32601)

command entered:   sentinel-win64.exe --config C:\Programs\desire --rpc-port:9919


And when I try to link it up via sentinel conf I get the error  Not capable masternode: could not connect to:  154.my.ip:9919

Check up that --rpc-port argument, you should not write :, simpy "--rpc-port 9919". It's indeed true that the connection will be done to ip:port, but that : is automatically added, you now have two of them, which might be causing the error.

If your desire.conf contains an "rpcport=9919" entry, then you don't even need the commandline argument

Wow - this is a shitshow of a update. Actually I like the UI and Im sure its more stable and such but may want to integrate so its less nuts.
I understand the need for sentinel - but dev may want integrate it into the qt for next release.
Sucks too - I was pretty excited about running my nodes again

Yeah, it was not smooth, no doubt on that. As of now integrating sentinel inside the qt interface (as a native integration) it is hard. We could however bundle them toghether and tie qt startup process with sentinel startup, I'll try to get this done by next week.


how should I proceed?    

Error: 'utf8' codec can't decode byte 0xfa in position 39: invalid start byte

thks

Umm.. how did you get that error? Make sure your desire.conf doesn't have any weird character. In case of doubt, move it somewhere and create a new one from scratch. Beware though, don't copy&paste from the old one to the new one, manually type everythin
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨CPU GPU MINING🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 15/11/2017, 16:47:27 UTC
I got so fed up trying to fix up these issues I destroyed my server. For like the third time. No more trying...

I will now wait until someone provides an updated step by step guide for setting up the mn on a vps with sentinel. Since the issues are solved, I don't think I have to wait long.
&
I mean a guide for setting up the entire masternode with these sentinel instruction integrated. FOR DUMMIES. I tried that, don't know how to run exes in linux etc. So fuck this. I'll get back to this when there are foolproof instructions. Thank you.

I'll make a new version of sentinel-win64.exe with two options:

1) Run sentinel
2) Fix wallet and masternode (basically all steps automated)

That's better than a "for dummies" guide, isn't it? Wink

and I may have found a BUg

Remember my post about the IP problem

it was solved when i Send additional 10 coins  to the 1000 containing wallet

go figure

So you finally got it to work by sending a transaction? That's really weird :/

I want to run a masternode on VPS. I run my wallet on Windows 32bit. Must I install sentinal on my local system? I see only Sentinal howto for Win64.

I compiled sentinel on a Windows x64 machine, so I am afraid it will only work on x64. You might want to try it though, simply run sentinel-win64.exe, if a console pops up and it says something, you are good to go! Otherwise... I don't own a 32 bit windows, next week (can't do it sooner sry) I can setup a virtual machine and do it.

Yes, I received first payment and sent you as acknowledgement. Thank you for your work!

Thank you so much!
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨CPU GPU MINING🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 15/11/2017, 12:46:42 UTC
Normally the 1st payment takes longer, the masternode must be recognized by the network and so on. You should be receiving, roughly:
3600*24 / (2.5*60) / 300 = 1.92
Payments a day (2.5 minutes blocktime, 300 active MNs), at 5DES per payment, that's 9.6DES/day.

If it says ENABLED, just let it be, you will receive them

(I'll take a look at all posts and answer them later, kind of busy right now!)
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨CPU GPU MINING🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 15/11/2017, 04:10:32 UTC
Basically that's all, do as you said! And yes, server=1, leave it like that.

If you get some error on the masternode startup, you might try remove "externalip=IPv4" and instead write "bind=IPv4:9919", but try as you have first
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨CPU GPU MINING🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 15/11/2017, 03:36:04 UTC
So i've followed everything to a T. sentinel is running happily (i think) every minute or so. It just says running sentinel and nothing else.

Unfortunately the masternode status still reports watchdog_expired. And yes,I am running the latest wallet and completely reindexed.

Any thoughts?

Running every minute is what it should do, so that fine.

On the WATCHDOG_EXPIRED, try the "when everything fails part". Backup "wallet.dat", close the wallet, remove everything but "wallet.dat" and "desire.conf" under "desirecore" and then restart the wallet.

EDIT: Just seen your update/edit! Glad to read that!
Post
Topic
Board Announcements (Altcoins)
Re: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨CPU GPU MINING🔨| - COIN OF YOUR DREAMS!
by
mninfo
on 15/11/2017, 03:22:14 UTC
Guys, I truly appreaciate you wanting to give me some coins. I'd like to be fair here, the dev already sent me some, so I encorage you to save them Wink
I'd like to contribute back to desire with those coins, by setting more MNs, but until I get some more ips/vps's I can't do so (and money, I need money for the those things haha)

I'll be transparent, so let me share the same address I did with the dev (kudos to him! he cares about the coin being stable and running and encourages people to do so by giving "bounties"!)
Last time l say it, I think you should all save those coins for yourself!

DRqUDMYfQ5PWvuajuCN7ZkQBagKWtqFu2U


For those who own VIVO. I just enabled VIVO following the guide!

Just create a different folder for Sentinel .exe and use a different port in rpcport=. I just used rpcport=9919

mninfo, please post your guide for VIVO community to receive proper respect for your work!

Already did Cheesy https://bitcointalk.org/index.php?topic=2110690.msg24600193#msg24600193


Guys i understand what Mn info did


I im really happy for the guys that solved their problem and kinda off about the "real" Dev team



I believe  Boozer Should Revivase the  "basic"  Windows Masternode guide Wich runs from the same machine that includes this sentinel thing


And to adress the "port"   an point what is what and what  should look like  like what



Ive send all my coins on another PC and wallet now Im gonna try from scratch everything

1 stetp to make sure i have no IP problem  then "we shall see

lazy_boozer might have not posted but has been actively following all these posts, he has updated the main page with my guide (with proper links and credits Wink) and even updated desire/sentinel github, so don't worry about that!

What do you mean by that "port"? One thing is the masternode port which uses to send messages to the network (9919) and another one the rpcport, which is used internally to communicate the wallet with the sentinel (even the Debug console uses it). That one can be anything as long as it is greater than 1024, I've been using 9918 in the guide.