Update Ignore to include CMAKE and Visual Studio
Typo in bootstrap.cpp @1011 -- if (connection->node->config.logging.bulk_pull_logging ()) ++ if (node->config.logging.bulk_pull_logging ())
This commit is contained in:
parent
e06716f5ee
commit
354b62990b
2 changed files with 23 additions and 2 deletions
23
.gitignore
vendored
23
.gitignore
vendored
|
@ -25,4 +25,25 @@
|
|||
*.DS_Store
|
||||
|
||||
# IDEs
|
||||
.idea
|
||||
.idea
|
||||
|
||||
# Visual Studio
|
||||
*.vcxproj
|
||||
*.vcxproj.filters
|
||||
*.sln
|
||||
*.qrc.depends
|
||||
*.dir
|
||||
Debug
|
||||
Release
|
||||
.vs
|
||||
*.aps
|
||||
*.db
|
||||
*.opendb
|
||||
qrc_resources.cpp
|
||||
|
||||
|
||||
# CMAKE
|
||||
CPack*
|
||||
CMakeCache.txt
|
||||
CMakeFiles
|
||||
cmake_install.cmake
|
||||
|
|
|
@ -1008,7 +1008,7 @@ void rai::bootstrap_attempt::populate_connections ()
|
|||
}
|
||||
}
|
||||
|
||||
if (connection->node->config.logging.bulk_pull_logging ())
|
||||
if (node->config.logging.bulk_pull_logging ())
|
||||
{
|
||||
std::unique_lock<std::mutex> lock (mutex);
|
||||
BOOST_LOG (node->log) << boost::str (boost::format ("Bulk pull connections: %1%, rate: %2% blocks/sec, remaining account pulls: %3%, total blocks: %4%") % connections.load () % (int)rate_sum % pulls.size () % (int)total_blocks.load ());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue