diff --git a/module/src/lib.rs b/module/src/lib.rs index 184db6210054fa491dec59d3c3cc43eff316cf38..f8bd7d43215df503283d8551e532ba381c054279 100644 --- a/module/src/lib.rs +++ b/module/src/lib.rs @@ -97,7 +97,7 @@ pub trait DuniterModule: 'static + Sized { /// Get TX history of a pubkey from a block range. Needed for BMA only #[doc(hidden)] - fn get_tx_history_bma_by_blocks( + fn get_txs_history_bma_by_blocks( _profile_path_opt: Option<&Path>, _pubkey: PublicKey, _from: Option<u32>, @@ -108,7 +108,7 @@ pub trait DuniterModule: 'static + Sized { /// Get TX history of a pubkey from a median_time range. Needed for BMA only #[doc(hidden)] - fn get_tx_history_bma_by_times( + fn get_txs_history_bma_by_times( _profile_path_opt: Option<&Path>, _pubkey: PublicKey, _from: Option<u64>, @@ -119,7 +119,7 @@ pub trait DuniterModule: 'static + Sized { /// Get mempool TX of a pubkey. Needed for BMA only #[doc(hidden)] - fn get_mempool_tx_bma( + fn get_txs_history_bma_mempool( _dbs_pool: &fast_threadpool::ThreadPoolSyncHandler<SharedDbs<FileBackend>>, _pubkey: PublicKey, ) -> KvResult<Option<TxsHistoryForBma>> {