diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-12-12 09:14:52 -0800 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-12-12 09:14:52 -0800 |
commit | 043a8fb98df03c458bb0b4c119418fd23b59f2bc (patch) | |
tree | 9b8671a7c58819cb93c8c554cb3a98477f730e71 /src/init.cpp | |
parent | dbd5bb803938f0030902b040e7ae191fc75d69b5 (diff) | |
parent | 8a28bb6deee2df7dac3288c1bc6db6221e5e43b6 (diff) |
Merge pull request #2059 from sipa/benchmark
Add -benchmark for reporting block processing times
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 656bda640f..9735c2780b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -481,6 +481,7 @@ bool AppInit2() // ********************************************************* Step 3: parameter-to-internal-flags fDebug = GetBoolArg("-debug"); + fBenchmark = GetBoolArg("-benchmark"); // -debug implies fDebug* if (fDebug) |