-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
42 lines (34 loc) · 872 Bytes
/
main.cpp
File metadata and controls
42 lines (34 loc) · 872 Bytes
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
#include <utility>
#include <iostream>
#include "Block.h"
#include "sha256.h"
Block::Block(std::string data, std::string previous_hash)
{
this->data = std::move(data);
this->previous_hash = std::move(previous_hash);
this->timestamp = time(0);
this->hash = calculate_hash();
}
std::string Block::calculate_hash()
{
return sha256(previous_hash + ctime(×tamp) + std::to_string(nonce) + data);
}
void Block::mine_block(unsigned long difficulty)
{
std::string target(new char[difficulty]);
target.replace(target.begin(), target.end(), '\0', '0');
while (hash.substr(0, difficulty) != target)
{
nonce++;
hash = calculate_hash();
}
std::cout << " + БЛОК : " << hash << std::endl;
}
std::string Block::get_hash()
{
return hash;
}
std::string Block::get_previous_hash()
{
return previous_hash;
}