Bitcoin Forum
May 05, 2024, 01:48:15 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 4 5 6 7 8 9 10 »  All
  Print  
Author Topic: ★☆ Get Help Here | The Ultimate Help Thread! | Free Giveaways ★☆  (Read 7815 times)
devthedev (OP)
Legendary
*
Offline Offline

Activity: 1050
Merit: 1004



View Profile
June 09, 2014, 05:04:28 PM
Last edit: September 01, 2014, 03:16:39 AM by devthedev
 #1

Welcome new users!
I've been in the community for a while now and have an immerse knowledge of Crypto and related topics.

Feel free to ask me any questions you have about the Bitcoin Protocol, Mining, Legalities, Wallets, etc.
I'll try to answer each and every question posted in the thread!

Looking forward to answering your questions!

For every 50 questions asked I'll be giving away a product or service!
The next one up is a $200 Amazon gift card.
The card will be given to a random user who's asked a question or helped others in the thread!



Tips are appreciated (: 1FLFWupqsssVgGC7jUVDYX2Cz8UtJ7xGHa

Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714873695
Hero Member
*
Offline Offline

Posts: 1714873695

View Profile Personal Message (Offline)

Ignore
1714873695
Reply with quote  #2

1714873695
Report to moderator
Bernard Lerring
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250



View Profile
June 09, 2014, 06:47:24 PM
 #2

When the difficulty changes how is it set?

There can't be some kind of signal dispersed around the network, saying "difficulty change ... ...NOW!", can there?
Acidyo
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500


Will Bitcoin Rise Again to $60,000?


View Profile
June 09, 2014, 07:19:57 PM
 #3

When the difficulty changes how is it set?

There can't be some kind of signal dispersed around the network, saying "difficulty change ... ...NOW!", can there?

It retargets every 2 weeks or so for bitcoin. Depending on the hashrate during the change, it will stick to it and after another 2 weeks change again depending on how many are mining then. Smiley

Sorry to hijack the thread, OP may give out a more detailed explanation if he wants to. Smiley
devthedev (OP)
Legendary
*
Offline Offline

Activity: 1050
Merit: 1004



View Profile
June 09, 2014, 07:49:12 PM
 #4

Yep, this is a good explanation


It retargets every 2 weeks or so for bitcoin. Depending on the hashrate during the change, it will stick to it and after another 2 weeks change again depending on how many are mining then. :)

Sorry to hijack the thread, OP may give out a more detailed explanation if he wants to. :)

This is how the difficulty is calculated,

The highest possible target (difficulty 1) is defined as 0x1d00ffff, which gives us a hex target of

Code:
0x00ffff * 2**(8*(0x1d - 3)) = 0x00000000FFFF0000000000000000000000000000000000000000000000000000

Pooled mining often uses non-truncated targets, which puts "pool difficulty 1" at

Code:
0x00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF

So the difficulty at 0x1b0404cb is therefore:
Code:
0x00000000FFFF0000000000000000000000000000000000000000000000000000 /
0x00000000000404CB000000000000000000000000000000000000000000000000
= 16307.420938523983 (bdiff)

You can read up more about Bitcoin difficulty here as well, https://en.bitcoin.it/wiki/Difficulty
Let me know if you have any other questions (:

Cancan
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
June 09, 2014, 08:37:40 PM
 #5

Great idea for a thread. While I don't have any questions, I would just like to leave this link here, as it's a list of interesting questions a newbie might have: http://www.washingtonpost.com/blogs/the-switch/wp/2013/11/19/12-questions-you-were-too-embarrassed-to-ask-about-bitcoin/
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4616



View Profile
June 09, 2014, 09:26:46 PM
 #6

When the difficulty changes how is it set?

There can't be some kind of signal dispersed around the network, saying "difficulty change ... ...NOW!", can there?

Yes, there is.

When a block is solved, that block is relayed throughout the network.  The difficulty is recalculated every 2016 blocks.  So each node knows it needs to recalculate the difficulty it's using before it starts working on its next block whenever its blockchain increases in length by another 2016 blocks.  Each node calculates the difficulty for itself, and they all use the same rules for that calculation so that they end up with the same difficulty.
devthedev (OP)
Legendary
*
Offline Offline

Activity: 1050
Merit: 1004



View Profile
June 09, 2014, 09:31:39 PM
Last edit: June 09, 2014, 09:45:57 PM by devthedev
 #7

Great idea for a thread. While I don't have any questions, I would just like to leave this link here, as it's a list of interesting questions a newbie might have: http://www.washingtonpost.com/blogs/the-switch/wp/2013/11/19/12-questions-you-were-too-embarrassed-to-ask-about-bitcoin/

Thanks!

Cancan
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
June 09, 2014, 09:47:46 PM
 #8

While I wouldn't use Washington Post as a reliable news source for Bitcoin, most of those answers were pretty spot on.
I know right? Times are changing, and we're starting to see major news websites actually doing their homework on Bitcoin.
But, so I won't be completely off-topic, I'll also add a question that a lot of newbies might have, as I noticed some tend to confuse the two:

What is the difference between nodes and miners?
devthedev (OP)
Legendary
*
Offline Offline

Activity: 1050
Merit: 1004



View Profile
June 09, 2014, 10:31:37 PM
 #9

What is the difference between nodes and miners?

Well to start off, a node refers to a "full" client. A "full" client is a client that shares transactions and blocks across the network. Each node has a complete copy of the ledger, which is a record of every Bitcoin transaction that ever took place. Such as Bitcoin-qt or bitcoind (headless).

When you're talking about miners I'm assuming you're talking about mining software. If so, "miners" don't need the full blockchain to operate. When you're using mining software such as Cudaminer and cgminer you're getting work from a pool that's running a Bitcoin client. The pool is essentially sending you a partial header for a new block and the software tries a lot of random numbers (nonces) in order to find one that creates an extremely low block header hash with a lot of zeros. Summing that up, a "miner" is not a node at all, it's just software that's doing basic calculations for a pool.

Let me know if that answers your question (:

devthedev (OP)
Legendary
*
Offline Offline

Activity: 1050
Merit: 1004



View Profile
June 09, 2014, 11:08:33 PM
Last edit: June 09, 2014, 11:20:46 PM by devthedev
 #10

For every 50 questions asked I'll be giving away a free Woodwallet to a random user who's asked a question or helped others in the thread!

JohnFromWIT
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
June 09, 2014, 11:46:26 PM
 #11

Difficult one..
What is a woodwallet?

devthedev (OP)
Legendary
*
Offline Offline

Activity: 1050
Merit: 1004



View Profile
June 09, 2014, 11:49:53 PM
 #12

Difficult one..
What is a woodwallet?

It's like a paper wallet, just engraved in wood.

monbux
Legendary
*
Offline Offline

Activity: 1736
Merit: 1024



View Profile WWW
June 10, 2014, 12:09:57 AM
 #13

Difficult one..
What is a woodwallet?

A very cool wallet Roll Eyes
Check out the official thread, https://bitcointalk.org/index.php?topic=638832.0.  I already have one myself, and it makes a great gift.  DevTheDev is being very generous giving these away, they start at $19 USD plus shipping.  Great thread, man!

devthedev (OP)
Legendary
*
Offline Offline

Activity: 1050
Merit: 1004



View Profile
June 10, 2014, 12:20:40 AM
 #14

Difficult one..
What is a woodwallet?
A very cool wallet Roll Eyes
Check out the official thread, https://bitcointalk.org/index.php?topic=638832.0.  I already have one myself, and it makes a great gift.  DevTheDev is being very generous giving these away, they start at $19 USD plus shipping.  Great thread, man!

Thanks monbux! There's nothing better than answering questions about Crypto and teaching people safe storage techniques with these WoodWallet giveaways (:

Are you new to the Bitcoin community? Let us know what kind of questions you have and we'll do our best to answer each and every one of them!

monbux
Legendary
*
Offline Offline

Activity: 1736
Merit: 1024



View Profile WWW
June 10, 2014, 12:25:26 AM
 #15

I have contacted devthedev and I am willing to also provide a small prize (for the time being) of a 1GH/S voucher on cex.io.
Worth ~ 0.00729 BTC, or almost $5 worth!  Yay!  May contribute more prizes in the future, not sure... I'll try and help as much as I can in this thread... thanks devthedev Smiley
Acidyo
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500


Will Bitcoin Rise Again to $60,000?


View Profile
June 10, 2014, 12:28:39 AM
 #16

This thread is turning out to be pretty awesome!

Nice idea! Smiley
devthedev (OP)
Legendary
*
Offline Offline

Activity: 1050
Merit: 1004



View Profile
June 10, 2014, 01:07:54 AM
 #17

Bump, bump. I know you have questions (:

kuverty
Sr. Member
****
Offline Offline

Activity: 770
Merit: 250


View Profile
June 10, 2014, 01:44:55 AM
 #18

This is a nice thread, will be helping others when I have the time. Winning one of those cool things would be even better than buying one.
devthedev (OP)
Legendary
*
Offline Offline

Activity: 1050
Merit: 1004



View Profile
June 10, 2014, 02:12:48 AM
 #19

This is a nice thread, will be helping others when I have the time. Winning one of those cool things would be even better than buying one.
Thanks! Good luck Cheesy

Parham6
Member
**
Offline Offline

Activity: 70
Merit: 10

Deceased


View Profile
June 10, 2014, 05:44:58 AM
 #20

Well I still haven't got the answer to my question: I'm using multibit and I want the Public Key (It's different than address) of my address, how do I get it? I don't want to know how a public key is calculated, I don't wanna read a dozen pages of math, I just want to know how to get it, period.

In memorial of the soon to be dead...
R.I.P.
Pages: [1] 2 3 4 5 6 7 8 9 10 »  All
  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!