Skip to content

Commit 687a02f

Browse files
consensus change
1 parent d4c0977 commit 687a02f

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

src/block.rs

+3
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ impl Block for DerivativeBlock {
319319
if !check_pow(
320320
&self.get_merkle_root(),
321321
&prev_block.get_info().difficulty,
322+
self.transactions().unwrap_or(&[]),
322323
&self.default_info.pow,
323324
) {
324325
return Ok(false);
@@ -413,6 +414,7 @@ impl Block for TransactionBlock {
413414
if !check_pow(
414415
&self.merkle_tree_root,
415416
&prev_block.get_info().difficulty,
417+
self.transactions().unwrap_or(&[]),
416418
&self.default_info.pow,
417419
) {
418420
return Ok(false);
@@ -548,6 +550,7 @@ impl Block for SummarizeBlock {
548550
if !check_pow(
549551
&self.merkle_tree_root,
550552
&prev_block.get_info().difficulty,
553+
self.transactions().unwrap_or(&[]),
551554
&self.default_info.pow,
552555
) {
553556
return Ok(false);

src/blockchaintree.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ impl BlockChainTree {
394394
)
395395
};
396396

397-
if !tools::check_pow(&prev_hash, &difficulty, pow) {
397+
if !tools::check_pow(&prev_hash, &difficulty, &[], pow) {
398398
return Err(BlockChainTreeError::BlockChainTree(BCTreeErrorKind::WrongPow).into());
399399
};
400400
tools::recalculate_difficulty(prev_timestamp, timestamp, &mut difficulty);
@@ -426,7 +426,7 @@ impl BlockChainTree {
426426
.attach_printable("failed to hash block")?;
427427

428428
let mut difficulty = last_block.get_info().difficulty;
429-
if !tools::check_pow(&prev_hash, &difficulty, pow) {
429+
if !tools::check_pow(&prev_hash, &difficulty, transactions, pow) {
430430
return Err(BlockChainTreeError::BlockChainTree(BCTreeErrorKind::WrongPow).into());
431431
};
432432
tools::recalculate_difficulty(last_block.get_info().timestamp, timestamp, &mut difficulty);

src/tools.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
use crate::errors::*;
2+
use crate::merkletree::MerkleTree;
23
use crate::static_values::{FEE_STEP, TIME_PER_BLOCK};
4+
use crate::transaction::{Transaction, Transactionable};
35
use crate::types::Hash;
46
use error_stack::{Report, Result, ResultExt};
57
use num_bigint::BigUint;
@@ -195,9 +197,16 @@ pub fn count_leading_zeros(data: &[u8]) -> u32 {
195197
to_return
196198
}
197199

198-
pub fn check_pow(hash: &[u8; 32], difficulty: &[u8; 32], pow: &[u8]) -> bool {
200+
pub fn check_pow(
201+
hash: &[u8; 32],
202+
difficulty: &[u8; 32],
203+
transactions: &[Hash],
204+
pow: &[u8],
205+
) -> bool {
206+
let merkle_tree = MerkleTree::build_tree(transactions);
199207
let mut hasher = Sha256::new();
200208
hasher.update(hash);
209+
hasher.update(merkle_tree.get_root());
201210
hasher.update(pow);
202211
let result: [u8; 32] = hasher.finalize().into();
203212

0 commit comments

Comments
 (0)