Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/data
Submodule data updated from bf2f22 to 5e608d
13 changes: 13 additions & 0 deletions tests/src/contracts/ckb_bitcoin_spv_type_lock/reorg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,19 @@ fn normal_case_1() {
test_normal(case);
}

#[test]
fn normal_case_2() {
let case = NormalCase {
headers_path: "case-0822528_0830592",
start_height: 828576,
stale_height: 829613,
clients_count: 20,
stale_client_id: 1,
reorg_clients_count: 12,
};
test_normal(case);
}

struct NormalCase<'a> {
headers_path: &'a str,
start_height: u32,
Expand Down