aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-01-07 13:03:21 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-01-07 13:03:41 +0100
commit7625f7ff943807288eec37c0a54334b21a98d84c (patch)
treeb6c34a7968b1dd4834cd4a5be87eda13d392ecd6 /src/main.cpp
parentd79adc1ab18f897ab02da93e48c74ee2f44dce7a (diff)
parente41345790f1041f5c5e5605d73a0af174769aa55 (diff)
downloadbitcoin-7625f7ff943807288eec37c0a54334b21a98d84c.tar.xz
Merge pull request #5597
e413457 Catch LevelDB errors during flush (Pieter Wuille) 02bced1 Bugfix: only track UTXO modification after lookup (Pieter Wuille)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index fa2b561489..ca2734b766 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1887,6 +1887,7 @@ enum FlushStateMode {
bool static FlushStateToDisk(CValidationState &state, FlushStateMode mode) {
LOCK(cs_main);
static int64_t nLastWrite = 0;
+ try {
if ((mode == FLUSH_STATE_ALWAYS) ||
((mode == FLUSH_STATE_PERIODIC || mode == FLUSH_STATE_IF_NEEDED) && pcoinsTip->GetCacheSize() > nCoinCacheSize) ||
(mode == FLUSH_STATE_PERIODIC && GetTimeMicros() > nLastWrite + DATABASE_WRITE_INTERVAL * 1000000)) {
@@ -1926,6 +1927,9 @@ bool static FlushStateToDisk(CValidationState &state, FlushStateMode mode) {
}
nLastWrite = GetTimeMicros();
}
+ } catch (const std::runtime_error& e) {
+ return state.Abort(std::string("System error while flushing: ") + e.what());
+ }
return true;
}