diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2015-10-26 04:22:07 +0100 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2015-12-01 15:52:09 -0800 |
commit | dd5862c4cdc02535948042fe519694166bcd2bb7 (patch) | |
tree | 82bde8fe54a7a09488dd4653a6ba7efb096356cf | |
parent | bde953e2818ecf44727da128c2aa2ec7667cf7e7 (diff) |
Flush coins cache also after transaction processing
-rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index d1ed5c5edf..c41dd58d11 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4830,6 +4830,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, if (nDoS > 0) Misbehaving(pfrom->GetId(), nDoS); } + FlushStateToDisk(state, FLUSH_STATE_PERIODIC); } |