Skip to content

Commit 0ecb5ad

Browse files
dcgclaude
authored andcommitted
fix: add missing UnconfirmedTransaction import in error_handling_test.rs
Added the missing import for UnconfirmedTransaction type which is used in the StorageManager trait implementation. This prevents compilation failure when the cfg gate is eventually removed. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent dea2559 commit 0ecb5ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash-spv/tests/error_handling_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use dash_spv::network::TcpConnection;
3636
use dash_spv::storage::{DiskStorageManager, MemoryStorageManager, StorageManager};
3737
use dash_spv::sync::sequential::phases::SyncPhase;
3838
use dash_spv::sync::sequential::recovery::{RecoveryManager, RecoveryStrategy};
39-
use dash_spv::types::{ChainState, MempoolState};
39+
use dash_spv::types::{ChainState, MempoolState, UnconfirmedTransaction};
4040
use dash_spv::wallet::Utxo;
4141

4242
/// Mock network manager for testing error scenarios

0 commit comments

Comments
 (0)