Merge pull request #54 from zone117x/master

Do not fall over when refreshing balance fails
This commit is contained in:
monero-project 2014-06-29 23:11:28 -04:00
commit e10100be20
1 changed files with 2 additions and 1 deletions

View File

@ -309,7 +309,8 @@ void wallet2::refresh(size_t & blocks_fetched, bool& received_money)
else
{
LOG_ERROR("pull_blocks failed, try_count=" << try_count);
throw;
//throw;
return;
}
}
}