Bitcoin Forum
May 24, 2024, 06:55:08 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 61 62 63 64 ... 66 »
261  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 29, 2015, 07:55:45 PM
Guys need help. Problem with update wallet

compilation terminated.
make[2]: *** [qt/test/qt_test_test_dash_qt-test_main.o] Error 1
make[2]: Leaving directory `/home/user/DashCoin/src'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/user/DashCoin/src'
make: *** [install-recursive] Error 1


More lines pls

EDIT: also try "./configure --disable-tests" instead of "./configure"
262  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 28, 2015, 12:11:20 AM

whats the mn-payout at the moment? 50%?
45%
this is the ultimate % 45/45/10

i thought 60% is the ultimate?
It's 50/50 now and will be 45/45/10 after a hard fork (block 328008 https://github.com/dashpay/dash/blob/master/src/main.cpp#L1575 )
263  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 27, 2015, 10:46:10 PM
v11 still receiving payments?
Nope https://dashninja.pl/blocks.html#blocksdetail
264  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 27, 2015, 04:11:10 PM
is it normal to have the debug log flooded with these messages:

2015-08-27 15:48:10 CMasternodePaymentWinner::IsValid - Masternode not in the top 10 (11)
2015-08-27 15:48:10 mnw - invalid message - Masternode not in the top 10 (11)
2015-08-27 15:48:10 CMasternodePaymentWinner::IsValid - Masternode not in the top 10 (11)
2015-08-27 15:48:10 mnw - invalid message - Masternode not in the top 10 (11)
2015-08-27 15:48:10 CMasternodePaymentWinner::IsValid - Masternode not in the top 10 (11)
2015-08-27 15:48:10 mnw - invalid message - Masternode not in the top 10 (11)
2015-08-27 15:48:10 CMasternodePaymentWinner::IsValid - Masternode not in the top 10 (12)
2015-08-27 15:48:10 mnw - invalid message - Masternode not in the top 10 (12)
2015-08-27 15:48:10 CMasternodePaymentWinner::IsValid - Masternode not in the top 10 (11)

  PID USER      PR  NI  VIRT  RES  SHR S  %CPU %MEM    TIME+  COMMAND                                                                                                                                                                                                       
***** ****    20   0 1721m 1.2g  65m S 116.9  4.0   4:23.91 dashd

10-20 minutes after a start - yes, it's a known one https://github.com/dashpay/dash/issues/578
265  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 27, 2015, 03:49:32 AM
Our build system now produce linux files that are not recognized by Ubuntu file explorer as executables though they are.
I wrote yet another simple script  Grin to install dash-qt from downloaded archive and to give it a nice icon.
Here is what you need to do:

1) After you extracted downloaded archive you should have dash-0.12.0 folder somewhere.
Go inside it, create a file named install_dash_qt.sh and edit it with your favorite editor:

Code:
#!/bin/bash
sudo -s install -m 0755 -o root -g root -t /usr/local/bin bin/dash-qt
echo "[Desktop Entry]
Name=Dash-Qt
Comment=Dash - Reinventing Cryptocurrency https://www.dashpay.io
Type=Application
Exec=dash-qt %u
Terminal=false
Icon=/usr/share/pixmaps/dash128.xpm
MimeType=x-scheme-handler/dash
Categories=Applications;Finance;" > ~/Desktop/Dash-Qt.desktop
chmod u+x ~/Desktop/Dash-Qt.desktop
sudo cp ~/Desktop/Dash-Qt.desktop /usr/share/applications/
sudo wget -O /usr/share/pixmaps/dash128.xpm https://github.com/dashpay/dash/raw/master/share/pixmaps/bitcoin128.xpm

2) Right click on empty space in that folder and choose "Open in Terminal". In command line issue:
Code:
chmod u+x install_dash_qt.sh
to make file executable and
Code:
./install_dash_qt.sh
to run it.

Enter your password and shortly after you should have a nice icon on your Desktop and the same icon in Applications.

Enjoy! Smiley

PS. This script reguires wget. Install it first if you don't have it already
Code:
sudo apt-get install wget

EDIT:
"su -c" requires you to set root password which "normal"/non-developer users do not have at all (by ubuntu's default)
Changed script to use "sudo -s" instead, give it a try if you had problems before
266  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 27, 2015, 03:42:22 AM

I don't think so  Roll Eyes

Code:
man crontab
snip
UdjinM6, I do believe the crontab method is indeed the most stable way of doing this and this should work.  I am probably thinking this is harder than it is. But I have struggled in the past to get permissions of the crontab user, file permissions, and directory just right so everything runs.  Just trying to save someone else a little of that time I wasted...  

No problems at all doing it in another way.  Smiley
I didn't mean to force everyone to use my script, it was just few statements in your post that doesn't feel like they are 100% correct  Roll Eyes
But yeah, there are multiple ways to achive the same result and there could be some unexpected troubles using either method.

EDIT: so, once again, no troubles and thank you for providing alternative version that worked for you.  Smiley
267  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 26, 2015, 11:51:22 PM
.......
Actually, crontabs may require a restart or server reboot.  Might also need to run with sudo crontab -e if running server as root.

..A server I rented didn't have crontab installed so this isn't always a no brainer...

If you don't have crontab installed, try this:

Code:
apt-get update
apt-get upgrade
apt-get install cron
Then you need to reboot for the cron process to take effect.
Add your crontab with crontab -e or sudo crontab -e
Then activate your crontab.  I think sudo service cron restart

Then to stop you need to edit the crontab and then restart the cron service.  Seems more complicated to me.

I don't think so  Roll Eyes

Code:
man crontab
Quote
...
       crontab  is  the  program used to install, deinstall or list the tables used to drive the cron( 8 ) daemon in Vixie Cron.  Each user can have their own crontab, and
       though these are files in /var/spool/cron/crontabs, they are not intended to be edited directly.
...
       For standard Debian systems, all users may use this command.
...

Code:
man cron
Quote
...
       cron searches its spool area (/var/spool/cron/crontabs) for crontab files (which are named after accounts in /etc/passwd); crontabs found are loaded into  memory.
...
       cron  then wakes up every minute, examining all stored crontabs, checking each command to see if it should be run in the current minute.
...
       Additionally, cron checks each minute to see if its spool directory's modtime (or the modtime on the /etc/crontab file) has changed, and if it has, cron will then
       examine the modtime on all crontabs files and reload those which have changed.  Thus cron need not be restarted whenever a crontab file is  modified.   Note  that
       the crontab(1) command updates the modtime of the spool directory whenever it changes a crontab.
...
268  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 25, 2015, 11:09:27 PM
12.2.49

after reindex => "yes"

i get this now for 10min. is everything working as it should?

/lots of Y/
dashd -reindex
269  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 25, 2015, 01:30:47 AM
OFF TOPIC
-------------


20 hours until further LTC meltdown.

Litecoin Block Reward Halving
Your link is broken  Tongue http://www.litecoinblockhalf.com/
270  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 25, 2015, 01:27:24 AM
How to start dashd automatically again after it crashed.


This will work if dashd crashes, but if the process is still running and maxes out memory, then this won't work.
yep, we are still investigating...
271  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 25, 2015, 01:13:16 AM
How to start dashd automatically again after it crashed.

run:
Code:
crontab -e 

add line:
Code:
*/1 * * * * /home/dashuser/mn_watch.sh >/dev/null 2>&1

use any editor you like and save this as "mn_watch.sh" file in user "dashuser" home directory:
Code:
#!/bin/bash
if [ -z `pidof dashd` ]; then
/home/dashuser/dashd
fi

add executable flag:
Code:
chmod u+x mn_watch.sh


PS. Use appropriate username, not "dashuser" from my example Wink
I also assumed that dashd is located in your user home directory, change path if needed.

PPS. not tested but should work  Roll Eyes

EDIT: ooops, tested and fixed  Smiley
272  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 22, 2015, 07:17:36 PM
Added few more strings to fix issues found by AjM
https://dashtalk.org/threads/v12-release.5888/page-30#post-64476

Please update your languages!
https://www.transifex.com/dash/dash/dash_ents/

Note: half of them were not changed but moved to another translation method.
However transifex recognize them as new.
Pls use suggestions in the bottom of the screen to save your time. Smiley

Should the white paper still be translated, or is it too outdated?

Yeah, I guess it should be translated, it's quite up to date imo. Still can't find time do finish ru translation though... Roll Eyes
273  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 22, 2015, 07:13:26 PM
All ~100% languages are up to full 100% again. Thanks everyone! https://github.com/dashpay/dash/pull/566  Smiley

Everyone else - keep pushing it, I know you can do better
https://www.transifex.com/dash/dash/dash_ents/  Wink
274  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 22, 2015, 05:09:04 PM
Nice! Most ~100% languages are up to full 100% again. French anyone?
https://www.transifex.com/dash/dash/dash_ents/

merde, je ne parlais pas francais
Oh, triste...
275  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 22, 2015, 04:58:52 PM
Nice! Most ~100% languages are up to full 100% again. French anyone?
https://www.transifex.com/dash/dash/dash_ents/
276  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 22, 2015, 11:38:41 AM
Added few more strings to fix issues found by AjM
https://dashtalk.org/threads/v12-release.5888/page-30#post-64476

Please update your languages!
https://www.transifex.com/dash/dash/dash_ents/

Note: half of them were not changed but moved to another translation method.
However transifex recognize them as new.
Pls use suggestions in the bottom of the screen to save your time. Smiley
277  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 19, 2015, 07:59:42 PM

Help needed after i upgraded to Windows 64x  0.12.0.46 version i keep getting the below error everytime i try launching DASH.







Make sure you are actually running v12 and not the old (v11) link or file.
If for whatever reason you want to run v11 after you installed (and run) v12 go to %appData%/Dash folder and remove (rename) masternode.conf
278  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 18, 2015, 04:49:30 PM
If my AWS shutdown my server and I have no back up. Did I lose my coins?
No, if you are using Hot/Cold MN setup your coins never leave your local wallet.
279  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 18, 2015, 04:02:18 PM
V12.0.45 is working great for me, really impressive work, all the new tools, wallet repair, backups,  syncing budgets, sporks, everything is super slick. It feels like a huge step forward, looking forward to what we can do with the budget system.  Cool



v12.0.45 crashed all my MNs every two days. Still can't find the problem. Very frustrating. Since 8 days without any payment for all my  MNs.
"crashed" - daemon (process) died or you mn just dropped out of list?
If it actually died - what your vps specs are?

all daemons on my digital ocean droplet (Ubuntu 14.04) died, masternode debug can't find coin, need to restart from hot wallet. Then qt-wallet on my Debian machine where I host my hot wallet hang on the "Synchronizing budgets... 100%" msg, can't even click on anything. Twice the whole Debian machine crashed with the wallet together.

Never seen an update like that. If you're interested I could try to send you the debug.log.

Thanks in advance.

That's weird... mine are on DO too and they feel fine.

Checklist:
- "txindex=1" in dash.conf
- 1 run with -reindex after that ^^^
- start-many/alias from local after reindex is finished
- "masternode debug" on remote should give you "Masternode successfully started", if it's not try this https://dashtalk.org/threads/v12-release.5888/page-15#post-63716
280  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: August 18, 2015, 03:13:42 PM
V12.0.45 is working great for me, really impressive work, all the new tools, wallet repair, backups,  syncing budgets, sporks, everything is super slick. It feels like a huge step forward, looking forward to what we can do with the budget system.  Cool



v12.0.45 crashed all my MNs every two days. Still can't find the problem. Very frustrating. Since 8 days without any payment for all my  MNs.
"crashed" - daemon (process) died or you mn just dropped out of list?
If it actually died - what your vps specs are?
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 61 62 63 64 ... 66 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!