-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathblock.rb
More file actions
60 lines (45 loc) · 1.42 KB
/
Copy pathblock.rb
File metadata and controls
60 lines (45 loc) · 1.42 KB
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
require 'json'
require "digest"
class Block
attr_reader :index, :timestamp, :data, :previous_hash, :nonce, :hash
def initialize index, timestamp, data, previous_hash, nonce = nil, hash = nil
@index, @timestamp, @data, @previous_hash = index, timestamp, data, previous_hash
unless nonce && hash
@nonce, @hash = solve_block
else
@nonce, @hash = nonce, hash
verify!
end
end
def self.first
Block.new 0, 0, "Genesis", "0"
end
def self.next previous, data
Block.new previous.index + 1, Time.now.to_i, data, previous.hash
end
def self.from_json_str str
block_hash = JSON.parse(str)
Block.new block_hash["index"].to_i, block_hash["timestamp"], block_hash["data"], block_hash["previous_hash"], block_hash["nonce"].to_i, block_hash["hash"]
end
def to_hash
{ index: index, timestamp: timestamp, data: data, previous_hash: previous_hash, nonce: nonce, hash: hash }
end
def to_s
"<#{index}-#{@hash[0..6]}..#{@hash[-5..-1]}>"
end
def verify!
raise 'invalid' if @hash != calculate_hash(@nonce)
end
def solve_block difficulty = "00000", nonce = 0
loop do
hash = calculate_hash nonce
return [nonce, hash] if hash.start_with? difficulty
nonce += 1
end
end
def calculate_hash nonce = 0
sha = Digest::SHA256.new
sha.update nonce.to_s + @index.to_s + @timestamp.to_s + @data + @previous_hash
sha.hexdigest
end
end