Skip to content

Commit

Permalink
disable palindrome (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
haozhiliu authored Oct 12, 2023
1 parent 9b754f0 commit 2f7b143
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/subcommand/server/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,11 @@ fn get_block_rarity_chunks(block_rarity: &BlockRarity, start: u64, end: u64) ->
}
}
}
BlockRarity::Palindrome => {
for palindrome in get_palindromes_from_sat_range(start, end) {
chunks.push((palindrome, palindrome + 1))
}
}
// BlockRarity::Palindrome => {
// for palindrome in get_palindromes_from_sat_range(start, end) {
// chunks.push((palindrome, palindrome + 1))
// }
// }
}
chunks
}
Expand Down

0 comments on commit 2f7b143

Please sign in to comment.