Skip to content

Commit

Permalink
Merge pull request #4611 from chenyukang/yukang-debug-chain-fork-spec
Browse files Browse the repository at this point in the history
chore(test): Fix the unstable spec ForksContainSameUncle caused by block hash collision
  • Loading branch information
chenyukang authored Aug 25, 2024
2 parents 3bd5fed + dc20e94 commit 76ebab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ impl Node {
let timestamp = block.timestamp();
let uncle = block
.as_advanced_builder()
.timestamp((timestamp + 1).pack())
.timestamp((timestamp - 1).pack())
.build();
(block, uncle)
}
Expand Down

0 comments on commit 76ebab4

Please sign in to comment.