aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core
diff options
context:
space:
mode:
authorJulien Klepatch <julien@julienklepatch.com>2017-06-23 05:16:11 +0800
committerJulien Klepatch <julien@julienklepatch.com>2017-06-23 05:16:11 +0800
commitbdab3436d3cac28e0498b827fb28841b1638b343 (patch)
treee17002e226520c03d833d68d9a6957dfe54e2c0e /src/cryptonote_core
parentMerge pull request #2094 (diff)
downloadmonero-bdab3436d3cac28e0498b827fb28841b1638b343.tar.xz
Fix mismatch of parameter name between header file and implementation for set_user_options()
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r--src/cryptonote_core/blockchain.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/cryptonote_core/blockchain.h b/src/cryptonote_core/blockchain.h
index 56373adf9..4f2e4f0d3 100644
--- a/src/cryptonote_core/blockchain.h
+++ b/src/cryptonote_core/blockchain.h
@@ -689,16 +689,15 @@ namespace cryptonote
// user options, must be called before calling init()
- //FIXME: parameter names don't match function definition in .cpp file
/**
* @brief sets various performance options
*
- * @param block_threads max number of threads when preparing blocks for addition
+ * @param maxthreads max number of threads when preparing blocks for addition
* @param blocks_per_sync number of blocks to cache before syncing to database
* @param sync_mode the ::blockchain_db_sync_mode to use
* @param fast_sync sync using built-in block hashes as trusted
*/
- void set_user_options(uint64_t block_threads, uint64_t blocks_per_sync,
+ void set_user_options(uint64_t maxthreads, uint64_t blocks_per_sync,
blockchain_db_sync_mode sync_mode, bool fast_sync);
/**