From adb802f28e02e728a860555af7d159af58d6ce74 Mon Sep 17 00:00:00 2001 From: Rostyslav Tyshko Date: Wed, 11 Jun 2025 01:46:35 -0400 Subject: [PATCH] redundunt --- node_core/src/chain_storage/block_store.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/node_core/src/chain_storage/block_store.rs b/node_core/src/chain_storage/block_store.rs index f55eeaa..677f426 100644 --- a/node_core/src/chain_storage/block_store.rs +++ b/node_core/src/chain_storage/block_store.rs @@ -230,17 +230,6 @@ mod tests { assert_eq!(retrieved_block.hash, block.hash); } - #[test] - fn test_get_block_not_found() { - let temp_dir = tempdir().unwrap(); - let path = temp_dir.path(); - - let node_store = NodeBlockStore::open_db_with_genesis(path, None).unwrap(); - - let result = node_store.get_block_at_id(42); - assert!(result.is_err()); - } - #[test] fn test_put_snapshot_at_block_id() { let temp_dir = tempdir().unwrap();