Bitcoin Forum
April 25, 2024, 01:54:19 AM *
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 65 66 »
301  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: July 13, 2015, 09:40:54 PM
Whew!  Bitfinex found my coins, which I sent to an old deposit address, and returned them!  YAAAY!  I'm so relieved!  I must never do that again, but with my memory, ugh!  I must make a new wallet that doesn't have that address saved!  LOL.

Now I have to go donate some coins to tungfa's write fundraiser: https://dashtalk.org/threads/writer-fundraise.5622/#post-59280.  I don't have much to give, but if we all give a little, it turns into a lot Cheesy  (don't look for it right away, sorry, have to open other computer, and the chickens need feeding and my new plants out front need watering ;P  But I'll get to it, promise!)
Wow! Congrats! I guess they have really good backups  Smiley
302  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: July 10, 2015, 04:52:56 AM
.....Long post here......
I assumed that toknormal was talking about Dash having spam attacks. It wasn't clear. I thought I'd alert the developers to the Bitcoin fork problem anyway and how it affected other altcoins based on Bitcoin, as reported in cointelegraph. I saw it just after it came out. Thanks for the compliment and the reassurance.

Yep, spam attacks are not related to this blockchain split, it's just soft-fork wasn't going the way it was designed because half of bitcoin miners effectively ignored it and basically "lied" to the network telling that they are capable of mining (and verifying) v3 blocks while they were not. But that's an interesting coincidence for sure.   Smiley

PS. Btw we had many forks back in old days so Dash miners are used to forks and they upgrade quite fast now to stay on the right chain as much as possible. And that's also why even if I can't say it for sure I still hardly believe most of them are using the latest source/binaries available.
303  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: July 10, 2015, 04:01:43 AM

Charlie Lee talking about LTC's resistance to spam attacks.

http://cointelegraph.com/news/114791/litecoin-shows-there-is-a-simple-fix-for-spam-attacks-on-bitcoin

I was wondering about that because all these pumps seem co-incidental with the spam attacks. If they are related, then the question arises of which is the chicken and which is the egg.

Did the CO2 cause the warming or did the warming cause the CO2 ?

(P.S. What Warming !)

Joining chat rooms is not my scene but I read this article in cointelegraph after reading your spam attack theory. It says that Bitcoin has forked two ways each 50% in both directions. It also says that all altcoins based on Bitcoin are at risk because of this. I read somewhere that Dash is a Bitcoin based altcoin. The article says :-

Bitcoin-based currencies

All cryptocurrencies, which have Bitcoin codebase in its core, have the same issue with transaction signature verification by OpenSSL libraries. That means that potentially every altcoin network might have problems with block rejection due to different signature encoding by different clients.
http://cointelegraph.com/news/114794/miners-lost-over-50000-from-the-bitcoin-hardfork-last-weekend

Could this be the reason why things are going wrong with Dash as you suggest? This is something the Dash developers could reassure Dash investors about. How about it you guys?
 

Things are not going wrong with Dash, not sure where you got this info from Smiley

Below is a lightly modified/combined X-post from https://dashtalk.org/threads/no-dash-mentioned-miners-lost-over-50-000-from-the-bitcoin-hardfork-last-weekend.5620/

We merged BIP66 a long time ago https://github.com/dashpay/dash/pull/178 so there should be no OpenSSL issues that could affect consensus on Dash network since most miners are using version 0.11.2.x I believe and this means that consensus is not affected by any changes in openssl so no forks should happen even if large miners would compile daemon with some different version of openssl (if some of them decide to upgrade openssl and recompile for example).

Also you can check for yourself that all blocks are v3 now:
Code:
#!/bin/bash
BLOCK=`dashd getinfo | grep blocks | awk '{print $3}' | sed -e 's/[",]//g'`
BLOCKHASH=`dashd getblockhash $BLOCK`
BLOCKSTOTAL=1000
V3COUNT=0
echo "Checking versions for $BLOCKSTOTAL blocks back from block $BLOCK $BLOCKHASH"
for(( i=1; i<= $BLOCKSTOTAL; i++)); do
BLOCKHASH=`dashd getblockhash $BLOCK`
VERSION=`dashd getblock $BLOCKHASH | grep version | awk '{print $3}' | sed -e 's/[",]//g'`
#echo "$i Block $BLOCK $BLOCKHASH $VERSION"
printf "."
if [[ $VERSION -eq 3 ]]; then
V3COUNT=$((V3COUNT+1))
fi
BLOCK=$((BLOCK-1))
done
echo "
V3 blocks $V3COUNT/$BLOCKSTOTAL"
Code:
Checking versions for 1000 blocks back from block 299678 00000000002027f6cabeaddd3111bd6c72f3c856e814940b7c0d074a8c9d75e4
...
V3 blocks 1000/1000

SPV-minig problem shouldn't be the case also simply because our blockchain/tx rate is still quite small and there are no benefits in implementing SPV-mining imo.

PS. Great first post btw  Roll Eyes
304  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: July 05, 2015, 03:57:03 AM
I found this file in my dash data directory folder: ".agreed_to_tou". Thought it was a bit strange and I do not remember seeing it before. Does it belong there or do I have a reason to be concerned?
Yep, it's ok. You can safely leave or delete it. It was used back in 0.10 version to check if user already read and agreed to the Terms Of Usage (tou) or not.
https://github.com/dashpay/dash/blob/master-v0.10/src/qt/bitcoingui.cpp#L313-L327
We don't have this since 0.11 anymore.
305  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: July 05, 2015, 01:11:47 AM
Thanks all, will try out your suggestions, the delete peers.dat & mncache.dat is in the local wallet right ?

no!

its on masternode server... under hidden folder .dash (linux)

be sure to stop mn daemon before that
Icebucket Just to claryfy once again: ^^^^(fixed version) only daemon, not mn itself i.e. "dashd stop" on remote and not "dashd masternode stop-alias/many" on local
306  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: July 02, 2015, 02:05:54 AM
pic with the moon
Nice photo Smiley
The position of the moon corrisponds ~11:36 p.m.
@ 3:00 a.m. the moon is in the top of the sky Wink

Well... It's 3:15 a.m. here, I'm looking at the (full?) moon and you know.... it looks pretty much the same  Roll Eyes

PS. damn it's moving so fast, I never really noticed.... Shocked

EDIT: to make it more related to this thread  Wink - I'm also looking through code and debugging some stuff but no big progress here, small fixes only
It`s almost 3am here and the moon is on the top as I said yesterday....
not looking at debug.log but some service duties Wink
edit: saw a good film right now - Survivor - with Pierce Brosnan & Milla Jovovich

Well, that means we leave in different places Cheesy

PS. Hmm.. The man from "The Thomas Crown Affair" & the woman from "Resident Evil" ?? I need to find a copy Smiley

PPS. Looks like Evan found and squashed the bug Smiley
https://github.com/dashpay/dash/commit/a89b0e705fa8fac24c7cfcde52e517ca15246905
Yay!
307  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: July 02, 2015, 12:16:25 AM

Nice photo Smiley
The position of the moon corrisponds ~11:36 p.m.
@ 3:00 a.m. the moon is in the top of the sky Wink

Well... It's 3:15 a.m. here, I'm looking at the (full?) moon and you know.... it looks pretty much the same  Roll Eyes

PS. damn it's moving so fast, I never really noticed.... Shocked

EDIT: to make it more related to this thread  Wink - I'm also looking through code and debugging some stuff but no big progress here, small fixes only
308  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 26, 2015, 01:19:14 AM
Guys, we have received 4 requests from new translators to join!

I'm glad to see new translators however in order to prevent translation corruptions from evil users I hope you guys don't mind making a post here (or in corresponding thread on dashtalk.org - https://dashtalk.org/threads/please-help-in-translations-for-v12-wallets.5523/ ) with your transifex username. That way we will be able to make sure you have good reputation. I'll grant you translator's permissions shortly after that.

Thank you for cooperation Smiley

PS. Everybody who already requested to join received pretty similar message from me on transifex
309  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 25, 2015, 03:31:08 PM
Feel bored looking at charts? v0.12 translation is open!  Grin

https://www.transifex.com/projects/p/dash/
310  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 23, 2015, 08:29:41 PM
Through this https://bitinfocharts.com/darkcoin/

I found that the rewards per block was increased up to 8.38 Dash.

Anyone please explain me:

Does it means the fewer miners the higher rewards per block? And how about max coins? Will the max coins can be much more higher than 22 millions Dashs?

Thank you,




Yes - less miners = more reward
Does not affect max coins

Actually, it does effect the max coins.  However, we're WAY below the required rewards to get to 22 million coins.  The way we've been going, it's more like the max # of coins to be produced will be closer to 16 million according to an estimate I did for myself a while back.  This is from memory, but I doubt we'll hit 19 million in 100 years.  And that doesn't include 10% coins that may never be created due to no approved projects being started later on, as it may become unnecessary to spend the money.

My only point being that it does effect the max number of coins, but even if mining is light, we'll probably never hit that 22 million coin mark.

Emission chart with the lowest reward possible (tnx poiuty!):
https://dash.org.ru/pages/stats.php#emission
~18.6M with the lowest reward, so ~22M is actually quite possible because on average it's a bit higher

Thanks for your answer. But what would happen if the Difficulty still low year after year? Would the Emission reduce?

Thanks,

It works the other way around - when diff goes down reward/emission goes up. So we are almost always on the lowest reward because miners are trying to get more. And to do so they have to balance right on the edge of it - they don't want to throw more hashes when reward is already the lowest one but they don't want to miss a block when reward gone even slightly up.
311  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 23, 2015, 02:58:13 AM
Through this https://bitinfocharts.com/darkcoin/

I found that the rewards per block was increased up to 8.38 Dash.

Anyone please explain me:

Does it means the fewer miners the higher rewards per block? And how about max coins? Will the max coins can be much more higher than 22 millions Dashs?

Thank you,




Yes - less miners = more reward
Does not affect max coins

Actually, it does effect the max coins.  However, we're WAY below the required rewards to get to 22 million coins.  The way we've been going, it's more like the max # of coins to be produced will be closer to 16 million according to an estimate I did for myself a while back.  This is from memory, but I doubt we'll hit 19 million in 100 years.  And that doesn't include 10% coins that may never be created due to no approved projects being started later on, as it may become unnecessary to spend the money.

My only point being that it does effect the max number of coins, but even if mining is light, we'll probably never hit that 22 million coin mark.

Emission chart with the lowest reward possible (tnx poiuty!):
https://dash.org.ru/pages/stats.php#emission
~18.6M with the lowest reward, so ~22M is actually quite possible because on average it's a bit higher
312  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 20, 2015, 04:15:44 PM
I've today many Orphans in my Debug Log.

2015-06-20 14:39:59 CheckBlock() : Skipping masternode payment check - nHeight 280887 Hash 00000000000ca9284dd79ef814b9d8b9c524ba9e8122dc77832a46f3a14d152b
2015-06-20 14:39:59 ProcessBlock: ORPHAN BLOCK 751, prev=00000000000d6c7c61ae11d22e5c6c74aa19bb101b0f04470303f1c92611b413

https://dl.dropboxusercontent.com/u/21000833/DRK/dash%2020-06.txt

24 h Datavolume 22 GB!!

https://dl.dropboxusercontent.com/u/21000833/DRK/dash.PNG

Simply restart your wallet and it will fix itself.
You can try to compile by yourself with https://github.com/UdjinM6/dash/commit/cf1e6774f6f4b31c5178e0a27aee8d6b03643e86 to prevent such situations in future. This should be fixed in v0.12.


Data volume is counted not for the selected period but from wallet start.
313  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 20, 2015, 01:19:00 PM
http://bitnovosti.com/2015/06/19/dash-тестирует-демократию-через-blockchain/

Tungfa is now famous in Russia (on most popular Bitcoin-news site).  Grin

nice one !!
Tx for the translation, very cool and definitely an interesting read i believe

Absolutely  Smiley

Great job, Alex!
314  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 16, 2015, 12:52:53 PM
we have a new dev? who's adios?


It's someone from btcsoft https://github.com/dashpay/dash/pull/357
315  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 09, 2015, 01:57:16 PM
EB82 – Mike Hearn - Blocksize Debate At The Breaking Point
https://soundcloud.com/epicenterbitcoin/eb-082

Looks like we are approaching the Bitcoin revolution Revolution in Bitcoin.  Cheesy But seriously, he has a really interesting vision about all kind of general Bitcoin issues.
316  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 04, 2015, 09:49:34 AM
Is there a cmd-line for dash-cli and/or dashd to list the HELP?

Hit me up again my Russo DEV - lol
LOL

to get cmd-line options
dashd --help

to get list of rpc commands
dash-cli help

to get help on some specific rpc command
dash-cli help some_command
317  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 04, 2015, 08:30:08 AM
it there a command I can use to

paginate : netstat -an | grep 9999

Huh

netstat -an | grep 9999 | more

Right than - that did work
but not working with in combination with --color=always



netstat -an | grep 9999 | more --color=always

or any variation that I try

I really want paginate and color always on : netstat -an | grep 9999

so far it one or the other - lol

and the other option is to limit the number of connections within the .conf  = maxconnections=XX
of which - the more the better
Right now I have 31 and it "over-flows" the page
ugh - - -paginate and colors Huh


lol

netstat -an | grep 9999 --color=always | more

OR

add this line to your .bashrc file
alias grep='grep --color=always'

then run
source .bashrc

and you'll be able to run
netstat -an | grep 9999 | more
and always get colored output  Cool
318  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][C2] Coin2 | Chain of Conflict FPS | POS | Official Thread on: June 03, 2015, 10:05:45 AM
You have bootstrap.dat for download? Thanks in advance!
There you go http://c2chain.info/bootstrap
319  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 02, 2015, 03:20:53 PM
Hit "Enter"
@UdjinM6 - I love your work - but - that was just a smart-ass remark. Of course I hit the 'ENTER' key - =plam to face - ugh

Sorry, but even when you insert "daemon=1" in you dash.conf config file (I wonder how are you able to run daemon without it) you'll still need to hit "Enter" Grin



Please be more familiar with this command "dash-cli masternode start". "dashd" might not be able to do what you want in near future. Smiley
@TheLazieR - Please explain what you mean - Gonna need more than that from a "Newbie" and possibly a "Sock-puppet" Troll acct. but - I'm to damn lazy to go look at your post history - ugh



Migrating to 0.10 bitcoin will split "old" dashd to 1) dashd - daemon 2) dash-cli - lightweight cli program to run rpc commands

EDIT: and "dashd some_command" will not be available anymore
320  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX on: June 02, 2015, 07:22:21 AM
When you guys start your wallet in linux, on the CMD-LINE

./dashd

Do you have to just let it sit for a long time? or what

I've always had to run ./dashd and then close the CMD-LINE window
reopen the CMD-LINE window
so I can continue to whatever I want to do like ./dashd masternode start

thoughts?
Hit "Enter"
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 65 66 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!