Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit a134f11

Browse files
committed
removing needless test
1 parent 239b37f commit a134f11

2 files changed

Lines changed: 1 addition & 13 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ through auto-generated REST API.
77
- ✅ Rust type and macro system and db engines at the byte level
88
- ✅ decentralized persistence options to maximize indexing speed and minimize data size
99
- ✅ meta space : self-tested and self-documented db & http layers of code derived from annotated structs
10+
- ✅ maximizing R/W speed while minimizing data size using hierarchical data structures of smart pointers
1011

1112
### Major Out-of-the-Box Features
1213

examples/utxo/tests/test.rs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,6 @@ fn each_entity_should_have_a_default_sample() {
2323
}
2424
}
2525

26-
#[test]
27-
fn spike() {
28-
let blocks = get_blocks(Height(1), 10, 10, 3);
29-
let db = empty_temp_db("trolo");
30-
let tx = blocks.first().unwrap().transactions.first().unwrap();
31-
32-
Transaction::store_and_commit(&db, tx).unwrap();
33-
let read_tx = db.begin_read().unwrap();
34-
Transaction::get(&read_tx, &tx.id).unwrap().unwrap();
35-
36-
Block::get(&read_tx, &blocks.first().unwrap().id).unwrap().unwrap();
37-
}
38-
3926
#[test]
4027
fn it_should_commit_multiple_blocks_in_a_single_tx() {
4128
let (blocks, multi_tx_db) = init_temp_db("db_test");

0 commit comments

Comments
 (0)