File tree 3 files changed +15
-3
lines changed
3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -319,6 +319,7 @@ impl Block for DerivativeBlock {
319
319
if !check_pow (
320
320
& self . get_merkle_root ( ) ,
321
321
& prev_block. get_info ( ) . difficulty ,
322
+ self . transactions ( ) . unwrap_or ( & [ ] ) ,
322
323
& self . default_info . pow ,
323
324
) {
324
325
return Ok ( false ) ;
@@ -413,6 +414,7 @@ impl Block for TransactionBlock {
413
414
if !check_pow (
414
415
& self . merkle_tree_root ,
415
416
& prev_block. get_info ( ) . difficulty ,
417
+ self . transactions ( ) . unwrap_or ( & [ ] ) ,
416
418
& self . default_info . pow ,
417
419
) {
418
420
return Ok ( false ) ;
@@ -548,6 +550,7 @@ impl Block for SummarizeBlock {
548
550
if !check_pow (
549
551
& self . merkle_tree_root ,
550
552
& prev_block. get_info ( ) . difficulty ,
553
+ self . transactions ( ) . unwrap_or ( & [ ] ) ,
551
554
& self . default_info . pow ,
552
555
) {
553
556
return Ok ( false ) ;
Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ impl BlockChainTree {
394
394
)
395
395
} ;
396
396
397
- if !tools:: check_pow ( & prev_hash, & difficulty, pow) {
397
+ if !tools:: check_pow ( & prev_hash, & difficulty, & [ ] , pow) {
398
398
return Err ( BlockChainTreeError :: BlockChainTree ( BCTreeErrorKind :: WrongPow ) . into ( ) ) ;
399
399
} ;
400
400
tools:: recalculate_difficulty ( prev_timestamp, timestamp, & mut difficulty) ;
@@ -426,7 +426,7 @@ impl BlockChainTree {
426
426
. attach_printable ( "failed to hash block" ) ?;
427
427
428
428
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) {
430
430
return Err ( BlockChainTreeError :: BlockChainTree ( BCTreeErrorKind :: WrongPow ) . into ( ) ) ;
431
431
} ;
432
432
tools:: recalculate_difficulty ( last_block. get_info ( ) . timestamp , timestamp, & mut difficulty) ;
Original file line number Diff line number Diff line change 1
1
use crate :: errors:: * ;
2
+ use crate :: merkletree:: MerkleTree ;
2
3
use crate :: static_values:: { FEE_STEP , TIME_PER_BLOCK } ;
4
+ use crate :: transaction:: { Transaction , Transactionable } ;
3
5
use crate :: types:: Hash ;
4
6
use error_stack:: { Report , Result , ResultExt } ;
5
7
use num_bigint:: BigUint ;
@@ -195,9 +197,16 @@ pub fn count_leading_zeros(data: &[u8]) -> u32 {
195
197
to_return
196
198
}
197
199
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) ;
199
207
let mut hasher = Sha256 :: new ( ) ;
200
208
hasher. update ( hash) ;
209
+ hasher. update ( merkle_tree. get_root ( ) ) ;
201
210
hasher. update ( pow) ;
202
211
let result: [ u8 ; 32 ] = hasher. finalize ( ) . into ( ) ;
203
212
You can’t perform that action at this time.
0 commit comments