Fix uninitialized atomic variables
[bitcoinplatinum.git] / src / bench / bench_bitcoin.cpp
blob226861aa7f745a5edb94155ef17dd86494537fd9
1 // Copyright (c) 2015-2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #include "bench.h"
7 #include "key.h"
8 #include "validation.h"
9 #include "util.h"
10 #include "random.h"
12 int
13 main(int argc, char** argv)
15 RandomInit();
16 ECC_Start();
17 SetupEnvironment();
18 fPrintToDebugLog = false; // don't want to write to debug.log file
20 benchmark::BenchRunner::RunAll();
22 ECC_Stop();