forked from lthn/blockchain
fixed misprint and reduced building threads number
This commit is contained in:
parent
b77b915524
commit
89ac994b59
2 changed files with 4 additions and 4 deletions
|
|
@ -223,7 +223,7 @@ bool blockchain_storage::init(const std::string& config_folder, const boost::pro
|
|||
|
||||
m_config_folder = config_folder;
|
||||
|
||||
// remove old incompartible DB
|
||||
// remove old incompatible DB
|
||||
const std::string old_db_folder_path = m_config_folder + "/" CURRENCY_BLOCKCHAINDATA_FOLDERNAME_OLD;
|
||||
if (boost::filesystem::exists(old_db_folder_path))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -40,19 +40,19 @@ if [ $? -ne 0 ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
make -j daemon Zano;
|
||||
make -j1 daemon Zano;
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Failed to make!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
make -j simplewallet;
|
||||
make -j1 simplewallet;
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Failed to make!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
make -j connectivity_tool;
|
||||
make -j1 connectivity_tool;
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Failed to make!"
|
||||
exit 1
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue