PoW机制中根据矿工的工作量来执行货币的分配和记账权的确定。算力竞争的胜者将获得相应区块记账权和比特币奖励。因此,矿机芯片的算力越高,挖矿的时间更长,就可以获得更多的数字货币。
优点:) Q6 \$ B6 h) U+ J& q6 _
算法简单,容易实现;节点间无需交换额外的信息即可达成共识;破坏系统需要投入极大的成本。
缺点:
浪费能源;区块的确认时间难以缩短;新的区块链必须找到一种不同的散列算法,否则就会面临比特币的算力攻击;容易产生分叉,需要等待多个确认;永远没有最终性,需要检查点机制来弥补最终性。% |6 A( f% P# P& h
目前基于PoW共识机制的数字货币有很多,比特币、莱特币、狗狗币、达士币、门罗币等初期的数字货币大多都是PoW共识机制。
其他的共识机制还有
PoS(Proof of Stake)DPOS(Delegated Proof-of-Stake)DAG(Directed acyclic graph)PBFT(Practical Byzantine Fault Tolerance)Pool验证池dBFT(delegated BFT)PoA(Proof-of-Authority)RPCA(Ripple Protocol consensus algorithm)Hcash——PoW+PoS共识机制 S& M& x, s; Y. {2 b4 X- y- r
这些共识机制,后面有时间会补充上的,今天主要介绍POW+ E6 d$ `) i7 B5 t, V
pow很简单,原理就是 利用计算力,在选择一个nonce的值结合区块的数据算出hash,使得hash的前面多少位都是0.3 D( s) Y2 {" u8 T+ l
nonce是一个用来找到满足条件的hash值的数字,nonce值一直迭代,直到hash值有效为止。在我们案例中一个有效的hash值是最少有4个前导0。找到nonce值以满足合适条件的hash值的过程就叫做挖矿。
下面给出代码:
- golang版
- package mainimport ( "bytes"! d- T* ~1 X _7 |
- "crypto/sha256"+ P# |3 W# V2 E7 U
- "fmt". p x+ k) x- |; z) a2 S& @7 X
- "math"; G/ ~: I4 p. }1 m* k' N
- "math/big")// 前导0,难度const targetBits = 8type ProofOfWork struct {3 n4 j( G9 e- {
- block *Block2 l* A) _' ^' |: J9 W6 z
- targetBit *big.Int/ u# |1 e+ D7 h* |. d: X
- }func NewProofOfWork(block *Block) *ProofOfWork { // 设置64位全1; W+ g3 \4 s/ T+ b
- var IntTarget = big.NewInt(1) //00000000000000000000000000001
- //10000000000000000000000000000/ I, e- _! z" i$ V; o6 N
- //00000000000100000000000000000
- //0000001& Y# e/ K0 ~6 {( D/ Y, G7 P
- // 右移 targetBits位
- IntTarget.Lsh(IntTarget, uint(256 - targetBits)) return &ProofOfWork{block:block, targetBit:IntTarget}% ~+ ~& y! O( |8 ^
- }func (pow *ProofOfWork)PrepareRawData(nonce int64)[]byte {
- block := pow.block
- tmp := [][]byte{
- Int2Byte(block.Version),' X% j5 K e# M3 ?6 `
- block.PrevBlockHash,0 \, \+ {; c7 ~7 L6 B9 V
- Int2Byte(block.TimeStamp),
- block.MerkeRoot,% ^/ f- K7 Q- G! l ^+ z, ?
- Int2Byte(nonce),: j3 m" N4 k) O# ]" ~
- Int2Byte(targetBits),
- block.Data}
- data := bytes.Join(tmp, []byte{}) return data8 i. O3 ]& w/ V$ F$ b" N' e9 {
- }func (pow *ProofOfWork)Run() (int64, []byte) { var nonce int64: E4 g& Z# g# |' W# d9 u! b
- var hash [32]byte
- var HashInt big.Int
- fmt.Printf("target hash:", pow.targetBit.Bytes()) for nonce
- python版1 f$ I, u* \; M% J) h
- function isValidHashDifficulty(hash, difficulty) { for (var i = 0, b = hash.length; i = difficulty; t# S4 q; t5 Q2 Y3 v$ A( C C
- }import hashlib""" Z) W( l, I& j W
- 工作量证明0 P! h# ~# u- I. F
- """class ProofofWork():
- """" c! P/ C s8 {& {2 P
- pow
- """& }, T" e7 E' Y6 R
- def __init__(self, block):
- self.block = block def mine(self):5 I6 `9 G. F3 o+ e1 X
- """
- 挖矿函数 { u' y+ B+ ]* {5 @
- :return:6 B! L' X. Z3 E4 m
- """( _0 P$ ]' ~; c3 O' W+ L& r( f a
- i = 02 `: b; G& ]; d
- prefix = '0000'
- while True:" ~) G, L! z9 N7 J+ s' P7 w1 F
- nonce = str(i)4 K% g# `1 R& h8 I# g0 F5 t f
- message = hashlib.sha256()
- message.update(str(self.block.data).encode('utf-8'))
- message.update(nonce.encode("utf-8"))
- digest = message.hexdigest() if digest.startswith(prefix): return nonce, digest
- i += 1