mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
checkpoints: pass std::string by const ref, not const value
This commit is contained in:
parent
38c8f4e0a3
commit
ba2fefb9a4
2 changed files with 4 additions and 4 deletions
|
@ -204,7 +204,7 @@ namespace cryptonote
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool checkpoints::load_checkpoints_from_json(const std::string json_hashfile_fullpath)
|
bool checkpoints::load_checkpoints_from_json(const std::string &json_hashfile_fullpath)
|
||||||
{
|
{
|
||||||
boost::system::error_code errcode;
|
boost::system::error_code errcode;
|
||||||
if (! (boost::filesystem::exists(json_hashfile_fullpath, errcode)))
|
if (! (boost::filesystem::exists(json_hashfile_fullpath, errcode)))
|
||||||
|
@ -286,7 +286,7 @@ namespace cryptonote
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool checkpoints::load_new_checkpoints(const std::string json_hashfile_fullpath, bool testnet, bool dns)
|
bool checkpoints::load_new_checkpoints(const std::string &json_hashfile_fullpath, bool testnet, bool dns)
|
||||||
{
|
{
|
||||||
bool result;
|
bool result;
|
||||||
|
|
||||||
|
|
|
@ -165,7 +165,7 @@ namespace cryptonote
|
||||||
*
|
*
|
||||||
* @return true if loading successful and no conflicts
|
* @return true if loading successful and no conflicts
|
||||||
*/
|
*/
|
||||||
bool load_new_checkpoints(const std::string json_hashfile_fullpath, bool testnet=false, bool dns=true);
|
bool load_new_checkpoints(const std::string &json_hashfile_fullpath, bool testnet=false, bool dns=true);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief load new checkpoints from json
|
* @brief load new checkpoints from json
|
||||||
|
@ -174,7 +174,7 @@ namespace cryptonote
|
||||||
*
|
*
|
||||||
* @return true if loading successful and no conflicts
|
* @return true if loading successful and no conflicts
|
||||||
*/
|
*/
|
||||||
bool load_checkpoints_from_json(const std::string json_hashfile_fullpath);
|
bool load_checkpoints_from_json(const std::string &json_hashfile_fullpath);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief load new checkpoints from DNS
|
* @brief load new checkpoints from DNS
|
||||||
|
|
Loading…
Reference in a new issue