Bitcoin Forum
April 30, 2024, 07:02:15 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 [2043] 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 ... 7012 »
  Print  
Author Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency  (Read 9722499 times)
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
July 01, 2014, 08:42:50 AM
 #40841

Code:
user@sv:~/doubleshot> grep Xrr9QM87kBrkns5LPF4FMyNBiu8Syc6ZAe getblocktemplate/*
getblocktemplate/92938.txt:{"masternode_payments": true, "coinbaseaux": {"flags": "062f503253482f"}, "votes": [], "previousblockhash": "0000000000017494e6c1652d6c594d0c09416b9161278c99c33cc754160cb86b", "target": "00000000000a9f0c000000000000000000000000000000000000000000000000", "noncerange": "00000000ffffffff", "transactions": [{"hash": "6f64c89ecf62cfdaaa8329315355d89420b17602aa85262b235a70a50aba3533", "depends": [], "fee": 0, "data": "01000000011cf96a28f489636a3e015fd633abfbb1b0e09f9237bedbce54661a1119390db8000000006b48304502204e078c5ccb18842438f68d33a5ee602f900e0f4f772d462d17cc38f58a1e1775022100e16bbc033a70bc122a8a7ee86fae3abd6fb2a40693a427e7c532ca809e410b97012103a254d948ff70bbf19f7e7dd97001f11e3ae4869eae015b537f687d16bcb1d2abffffffff010065cd1d000000001976a91406fe1565a94d0691e74e34350f91b3be4959e71288ac00000000", "sigops": 1}], "mintime": 1403929596, "sigoplimit": 20000, "curtime": 1403931067, "height": 92938, "payee": "Xrr9QM87kBrkns5LPF4FMyNBiu8Syc6ZAe", "version": 2, "coinbasevalue": 500000000, "sizelimit": 1000000, "enforce_masternode_payments": false, "mutable": ["time", "transactions", "prevblock"], "bits": "1b0a9f0c"}

How did you dump all getblocktemplate's for all blocks?


Use command option blocknotify.
Code:
# darkcoin.conf 
blocknotify=/home/user/scripts/blocks.py



Works for new blocks, but not historical blocks. Any ideas?
Deleted directories blocks and chainstate expecting blocknotify invocation for all historical blocks. No joy.



could you please explain how this works and how to do to get these results ?

blocks.py is a script that runs when a new block is found ?
What to put into this script ?

Waiting now for more than 96h without a payment so it would be nice to know get voted but only issue pool is not paying

When a new block is received, command specified in blocknotify is called.
Any scripts or commands will work.

example
Code:
blocknotify=echo %s >> /home/nm05/logs/log.txt
or
blocknotify=darkcoind getblocktemplate | egrep 'height|payee' | xargs >> /home/nm05/logs/log.txt

sample out, command changed from echo to getblocktemplate
Code:
nm05@ip-172-31-13-72:~$ cat logs/log.txt 
00000000000c3288d3efc900a9640c2339ea6f4ad67e696d5e3410fc8cc64ca3
00000000000b57eab73a312b6bd58d418d3d59954377523248153c87d0cb661d
0000000000087a3f563c14237e137fb972bfdc9fa166e0a5d41dea85ab63f6bb
0000000000085d4c79b7d5ba412a2b8273df3ac26ca1e212785d7afa10ec2ff4
00000000000b2f6b017d19f5f6d328d37c16e3e5d7d393b2b825b8d6c95e3c5c
00000000000658e873998adda4f0c0caf4fd612c9eddf3a23f295fa9f9ab9ed7
height : 94679, payee : XcrdhUKHbQQoZRFdMezYHLXia7wcbgUyGH,
height : 94680, payee : XhPweVoEC9BLCWGJnCUonYoL7iC4eq5Hwy,

If command has error in excution, error is logged to debug.log
1714503735
Hero Member
*
Offline Offline

Posts: 1714503735

View Profile Personal Message (Offline)

Ignore
1714503735
Reply with quote  #2

1714503735
Report to moderator
1714503735
Hero Member
*
Offline Offline

Posts: 1714503735

View Profile Personal Message (Offline)

Ignore
1714503735
Reply with quote  #2

1714503735
Report to moderator
The forum strives to allow free discussion of any ideas. All policies are built around this principle. This doesn't mean you can post garbage, though: posts should actually contain ideas, and these ideas should be argued reasonably.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714503735
Hero Member
*
Offline Offline

Posts: 1714503735

View Profile Personal Message (Offline)

Ignore
1714503735
Reply with quote  #2

1714503735
Report to moderator
1714503735
Hero Member
*
Offline Offline

Posts: 1714503735

View Profile Personal Message (Offline)

Ignore
1714503735
Reply with quote  #2

1714503735
Report to moderator
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
July 01, 2014, 08:50:45 AM
Last edit: July 01, 2014, 09:24:03 AM by chaeplin
 #40842

But still some NMs have problem.

May be propagation delay or banning or setup problem or ..

One of those masternodes is mine. What's the problem with them ?



Should be all green in sv01 ~ sv06.
(maybe my nodes missed something.... )

Changing 0 addresss + masternodeprivatekey + ip will be fastest..
If your node is being paid, do not change anything.
splawik21
Legendary
*
Offline Offline

Activity: 1372
Merit: 1005


DASH is the future of crypto payments!


View Profile
July 01, 2014, 08:55:09 AM
 #40843

Guys
Coming home back from work and.... my wife has prepared me the supper.... who wouldn`t like to have something like that? Smiley LOL


Hm, could it be that your name is DIRK splawik and your wife is a little bit dyslexic sometimes?

If not, then you have an AWESOME wife.
Indeed she is awesome, tell me which wife will say to his husband, come on lets invest some money in drk. Normally they think, I`ll not let him do it so I could buy some more shoes and bags Wink

BE SMART, USE DASH ( ͡° ͜ʖ ͡°)
splawik21
Legendary
*
Offline Offline

Activity: 1372
Merit: 1005


DASH is the future of crypto payments!


View Profile
July 01, 2014, 09:14:59 AM
 #40844

EDIT (6/28/2014)
New clients have been released and more changes have been made. Current versions are v9.11.5 and v10.11.5. It is important that all solo-miners and pool operators update to the correct clients! Miners make the network work, and as such you need to use the right client versions, stay up to date and keep our blockchain healthy and stable!

You can find the new client software on the official downloads page of www.Darkcoin.io.

https://www.darkcoin.io/getstarted.html

*** PLEASE UPDATE TO 9.11.5 OR 10.11.5 ***

Windows Users:
v9.11.5
v10.11.5

Linux Users:
Ubuntu v10.11.5 GUI Wallet/Client
Ubuntu v10.11.5 Darkcoind Daemon

Mac Users:
v9.11.5 Wallet/Client

https://darkcointalk.org/threads/please-update-your-darkcoin-clients.1602/
New page, bump....
coin101 lets do the shifts, You 00-12, me 12-24 Cheesy

BE SMART, USE DASH ( ͡° ͜ʖ ͡°)
CryptoPleb
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
July 01, 2014, 09:17:37 AM
 #40845

Finally got my first masternode payment
From coinmine.pl (https://www2.coinmine.pl/drk/) thanks for paying masternodes  Grin
splawik21
Legendary
*
Offline Offline

Activity: 1372
Merit: 1005


DASH is the future of crypto payments!


View Profile
July 01, 2014, 09:23:44 AM
 #40846

Finally got my first masternode payment
From coinmine.pl (https://www2.coinmine.pl/drk/) thanks for paying masternodes  Grin
I still have some my MN not paid but it is all right. I`ve received the response from chaeplin where was the code that if there were the enforcment I would have been paid, so now I`m calm...because was ready to act - new wallet + privkey + ip..... finally don`t have to do that Wink uffff

BE SMART, USE DASH ( ͡° ͜ʖ ͡°)
CryptoPleb
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
July 01, 2014, 09:27:00 AM
 #40847

Finally got my first masternode payment
From coinmine.pl (https://www2.coinmine.pl/drk/) thanks for paying masternodes  Grin
I still have some my MN not paid but it is all right. I`ve received the response from chaeplin where was the code that if there were the enforcment I would have been paid, so now I`m calm...because was ready to act - new wallet + privkey + ip..... finally don`t have to do that Wink uffff

Yeah its good to know that your masternode is actually working. I would of had a few payments by now if enforcement was on. Good luck, hope some pools who are updated choose you next Wink

People should try find out who paid their masternode and give the pool some advertisement each time
luke997
Full Member
***
Offline Offline

Activity: 294
Merit: 100


View Profile
July 01, 2014, 09:29:03 AM
 #40848

Guys
Coming home back from work and.... my wife has prepared me the supper.... who wouldn`t like to have something like that? Smiley LOL


Hm, could it be that your name is DIRK splawik and your wife is a little bit dyslexic sometimes?

If not, then you have an AWESOME wife.
Indeed she is awesome, tell me which wife will say to his husband, come on lets invest some money in drk. Normally they think, I`ll not let him do it so I could buy some more shoes and bags Wink

:-)
Lauda
Legendary
*
Offline Offline

Activity: 2674
Merit: 2965


Terminated.


View Profile WWW
July 01, 2014, 09:31:38 AM
 #40849

DRK needs some attention on the market.
We have passed 500 MN's.  Cheesy

"The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"
😼 Bitcoin Core (onion)
alz
Full Member
***
Offline Offline

Activity: 227
Merit: 100


View Profile
July 01, 2014, 09:41:35 AM
 #40850

Just saw this poll

https://bitcointalk.org/index.php?topic=568166.0


Might be worth heading over and showing DRK some support

BTC - 1GJ2dWf8WBznTtkuuof3WTBXQAULaqVGYj LTC - LTyCKKCGHJQZwsh5YhyzGeee4womQwChUU DASH - Xp5pq62dgJxmbhawyNtWMKT9Rst8JgNCY7
droptable
Sr. Member
****
Offline Offline

Activity: 363
Merit: 250


View Profile
July 01, 2014, 10:07:38 AM
 #40851

Guys
Coming home back from work and.... my wife has prepared me the supper.... who wouldn`t like to have something like that? Smiley LOL


Hm, could it be that your name is DIRK splawik and your wife is a little bit dyslexic sometimes?

If not, then you have an AWESOME wife.

bump

say greetings from the community to her.

DΛRKCOIN -> is now -> DΛSH
----------
not DashCoin, not DarkDash, not anything. The Name has been / is changed the tech stays the same
darianc
Member
**
Offline Offline

Activity: 73
Merit: 10


View Profile
July 01, 2014, 10:25:14 AM
 #40852

I cannot wait until enforcement is enabled.

skipped twice in twenty minutes!

Code:
"height" : 94714  "payee" : "Xhvr55Bazu2Ddech4kVetcTMP5Axa9MS2W",
"height" : 94703  "payee" : "Xhvr55Bazu2Ddech4kVetcTMP5Axa9MS2W",

gah!
dotnetmin
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile
July 01, 2014, 10:25:28 AM
 #40853

Code:
user@sv:~/doubleshot> grep Xrr9QM87kBrkns5LPF4FMyNBiu8Syc6ZAe getblocktemplate/*
getblocktemplate/92938.txt:{"masternode_payments": true, "coinbaseaux": {"flags": "062f503253482f"}, "votes": [], "previousblockhash": "0000000000017494e6c1652d6c594d0c09416b9161278c99c33cc754160cb86b", "target": "00000000000a9f0c000000000000000000000000000000000000000000000000", "noncerange": "00000000ffffffff", "transactions": [{"hash": "6f64c89ecf62cfdaaa8329315355d89420b17602aa85262b235a70a50aba3533", "depends": [], "fee": 0, "data": "01000000011cf96a28f489636a3e015fd633abfbb1b0e09f9237bedbce54661a1119390db8000000006b48304502204e078c5ccb18842438f68d33a5ee602f900e0f4f772d462d17cc38f58a1e1775022100e16bbc033a70bc122a8a7ee86fae3abd6fb2a40693a427e7c532ca809e410b97012103a254d948ff70bbf19f7e7dd97001f11e3ae4869eae015b537f687d16bcb1d2abffffffff010065cd1d000000001976a91406fe1565a94d0691e74e34350f91b3be4959e71288ac00000000", "sigops": 1}], "mintime": 1403929596, "sigoplimit": 20000, "curtime": 1403931067, "height": 92938, "payee": "Xrr9QM87kBrkns5LPF4FMyNBiu8Syc6ZAe", "version": 2, "coinbasevalue": 500000000, "sizelimit": 1000000, "enforce_masternode_payments": false, "mutable": ["time", "transactions", "prevblock"], "bits": "1b0a9f0c"}

How did you dump all getblocktemplate's for all blocks?


Use command option blocknotify.
Code:
# darkcoin.conf 
blocknotify=/home/user/scripts/blocks.py



Works for new blocks, but not historical blocks. Any ideas?
Deleted directories blocks and chainstate expecting blocknotify invocation for all historical blocks. No joy.



could you please explain how this works and how to do to get these results ?

blocks.py is a script that runs when a new block is found ?
What to put into this script ?

Waiting now for more than 96h without a payment so it would be nice to know get voted but only issue pool is not paying

When a new block is received, command specified in blocknotify is called.
Any scripts or commands will work.

example
Code:
blocknotify=echo %s >> /home/nm05/logs/log.txt
or
blocknotify=darkcoind getblocktemplate | egrep 'height|payee' | xargs >> /home/nm05/logs/log.txt

sample out, command changed from echo to getblocktemplate
Code:
nm05@ip-172-31-13-72:~$ cat logs/log.txt 
00000000000c3288d3efc900a9640c2339ea6f4ad67e696d5e3410fc8cc64ca3
00000000000b57eab73a312b6bd58d418d3d59954377523248153c87d0cb661d
0000000000087a3f563c14237e137fb972bfdc9fa166e0a5d41dea85ab63f6bb
0000000000085d4c79b7d5ba412a2b8273df3ac26ca1e212785d7afa10ec2ff4
00000000000b2f6b017d19f5f6d328d37c16e3e5d7d393b2b825b8d6c95e3c5c
00000000000658e873998adda4f0c0caf4fd612c9eddf3a23f295fa9f9ab9ed7
height : 94679, payee : XcrdhUKHbQQoZRFdMezYHLXia7wcbgUyGH,
height : 94680, payee : XhPweVoEC9BLCWGJnCUonYoL7iC4eq5Hwy,

If command has error in excution, error is logged to debug.log

if i use
Code:
 blocknotify=echo %s >> /home/user/logs/log.txt
in script i got back
Code:
 %s: not found

if i use
Code:
 blocknotify=darkcoind getblocktemplate | egrep 'height|payee' | xargs >> /home/user/logs/log.txt
in script i got back
Code:
 a new empty line in log.txt 
each time a block is found
toknormal
Legendary
*
Offline Offline

Activity: 3066
Merit: 1188


View Profile
July 01, 2014, 10:31:01 AM
 #40854

I realise this might have been discussed many time already so apologies if so, but what do the various "drkmn03, drkmn04..." columns mean in the https://elbzo.net/masternodes.html site ?

Mine went "Unlisted" in most of them after I upgraded. Why would that be ?

I didn't do anything except upgrade darkcoind.
AlexGR
Legendary
*
Offline Offline

Activity: 1708
Merit: 1049



View Profile
July 01, 2014, 10:36:29 AM
 #40855

Anyone see any meaning in XosX new amount?
353,251.34329782

http://chainz.cryptoid.info/drk/address.dws?188207.htm

The meaning is simple: Cheap DRKs Tongue

Anyhow, last time it finished with 81 and I said it could be a birthdate... now it finishes at 82. Evan is an '82er but I don't know the month/day etc to see if the prior numbers are meaningful in the european context (29/7/82).
tibolt
Full Member
***
Offline Offline

Activity: 138
Merit: 100


View Profile
July 01, 2014, 10:52:50 AM
 #40856

i cant understand why dark and litecoin fallowing same price path?

any idea?
thelonecrouton
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
July 01, 2014, 11:01:32 AM
 #40857

Anyone see any meaning in XosX new amount?
353,251.34329782

http://chainz.cryptoid.info/drk/address.dws?188207.htm

The meaning is simple: Cheap DRKs Tongue

Anyhow, last time it finished with 81 and I said it could be a birthdate... now it finishes at 82. Evan is an '82er but I don't know the month/day etc to see if the prior numbers are meaningful in the european context (29/7/82).


I tried latitude/longitude and got somewhere off the NE coast of Cyprus. May be the current location of the DarkJesus Yacht.
splawik21
Legendary
*
Offline Offline

Activity: 1372
Merit: 1005


DASH is the future of crypto payments!


View Profile
July 01, 2014, 11:02:29 AM
 #40858

I have wrote to BlackCoinPool to update their binaries.
Can other write to the pools which dont pay 20% ?

BE SMART, USE DASH ( ͡° ͜ʖ ͡°)
thelonecrouton
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
July 01, 2014, 11:09:13 AM
 #40859

i cant understand why dark and litecoin fallowing same price path?

any idea?

Whales are all beached, sipping Martinis and oiling up their totty?

Who cares, Evan + Co working on RC4 and other goodies to come. Current price is meaningless.

Going to take my boomstick, head out into werewolf country and come home with some tasty critters for the pot.  Grin
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
July 01, 2014, 11:14:30 AM
 #40860


if i use
Code:
 blocknotify=echo %s >> /home/user/logs/log.txt
in script i got back
Code:
 %s: not found

if i use
Code:
 blocknotify=darkcoind getblocktemplate | egrep 'height|payee' | xargs >> /home/user/logs/log.txt
in script i got back
Code:
 a new empty line in log.txt 
each time a block is found

I use command directely in darkcoin.conf.
# darkcoin.conf has
Code:
blocknotify=darkcoind getblocktemplate | egrep 'height|payee' | xargs >> /home/user/logs/log.txt

change path to fit your environment.
Pages: « 1 ... 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 [2043] 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 ... 7012 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!