File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -200,8 +200,8 @@ where
200
200
Ok ( ( ) )
201
201
}
202
202
203
- /// Obtains the mutex guard to the wallet and creates a [`crate::primitives ::SyncStatus`] from the wallet's current
204
- /// [`crate::primitives ::SyncState`].
203
+ /// Obtains the mutex guard to the wallet and creates a [`crate::wallet ::SyncStatus`] from the wallet's current
204
+ /// [`crate::wallet ::SyncState`].
205
205
///
206
206
/// Designed to be called during the sync process with minimal interruption.
207
207
pub async fn sync_status < W > ( wallet : Arc < Mutex < W > > ) -> SyncStatus
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ pub trait SyncWallet {
47
47
) -> Result < & mut BTreeMap < TransparentAddressId , String > , Self :: Error > ;
48
48
}
49
49
50
- /// Trait for interfacing [`crate::primitives ::WalletBlock`]s with wallet data
50
+ /// Trait for interfacing [`crate::wallet ::WalletBlock`]s with wallet data
51
51
pub trait SyncBlocks : SyncWallet {
52
52
/// Get a stored wallet compact block from wallet data by block height
53
53
/// Must return error if block is not found
@@ -77,7 +77,7 @@ pub trait SyncBlocks: SyncWallet {
77
77
}
78
78
}
79
79
80
- /// Trait for interfacing [`crate::primitives ::WalletTransaction`]s with wallet data
80
+ /// Trait for interfacing [`crate::wallet ::WalletTransaction`]s with wallet data
81
81
pub trait SyncTransactions : SyncWallet {
82
82
/// Get reference to wallet transactions
83
83
fn get_wallet_transactions ( & self ) -> Result < & HashMap < TxId , WalletTransaction > , Self :: Error > ;
You can’t perform that action at this time.
0 commit comments