Skip to content

Commit 3948421

Browse files
committed
add bitfinity prefix to the tests
1 parent 9a70d07 commit 3948421

File tree

1 file changed

+6
-6
lines changed
  • crates/bitfinity-block-confirmation/src

1 file changed

+6
-6
lines changed

crates/bitfinity-block-confirmation/src/lib.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ mod tests {
536536
}
537537

538538
#[tokio::test]
539-
async fn test_pow_hash_with_empty_execution() {
539+
async fn bitfinity_test_pow_hash_with_empty_execution() {
540540
let (block_validator, genesis_block) = setup_test_block_validator(None);
541541

542542
let block1 = {
@@ -580,7 +580,7 @@ mod tests {
580580
}
581581

582582
#[tokio::test]
583-
async fn test_pow_hash_basic_validation() {
583+
async fn bitfinity_test_pow_hash_basic_validation() {
584584
let (block_validator, genesis_block) = setup_test_block_validator(None);
585585

586586
let mut block_builder = TestBlockBuilder::eth();
@@ -599,7 +599,7 @@ mod tests {
599599
}
600600

601601
#[tokio::test]
602-
async fn test_pow_hash_deterministic() {
602+
async fn bitfinity_test_pow_hash_deterministic() {
603603
let (block_validator, genesis_block) = setup_test_block_validator(None);
604604
let mut block_builder = TestBlockBuilder::eth();
605605
let block = block_builder
@@ -618,7 +618,7 @@ mod tests {
618618
}
619619

620620
#[tokio::test]
621-
async fn test_pow_hash_state_independence() {
621+
async fn bitfinity_test_pow_hash_state_independence() {
622622
let (block_validator, genesis_block) = setup_test_block_validator(None);
623623
let mut block_builder = TestBlockBuilder::eth();
624624
let block = block_builder
@@ -652,7 +652,7 @@ mod tests {
652652
}
653653

654654
#[tokio::test]
655-
async fn test_pow_hash_deterministic_with_empty_blocks() {
655+
async fn bitfinity_test_pow_hash_deterministic_with_empty_blocks() {
656656
// Expected final PoW hash
657657
let expected_pow_hash = did::H256::from_hex_str(
658658
"0xe66caa3a5bf8a22c38c33e5fb4cab1bd1b34e9734526a8723c615e9d36ccc45b",
@@ -716,7 +716,7 @@ mod tests {
716716
}
717717

718718
#[tokio::test]
719-
async fn test_pow_hash_deterministic_with_transactions() {
719+
async fn bitfinity_test_pow_hash_deterministic_with_transactions() {
720720
// Expected final PoW hash
721721
let expected_pow_hash = did::H256::from_hex_str(
722722
"0xa349b3ca25925decd1c225b8bc3a133c436f3989eb8048e93ee1389c78a1d6a4",

0 commit comments

Comments
 (0)