Merge #11667: Add scripts to dumpwallet RPC
[bitcoinplatinum.git] / src / bench / bench_bitcoin.cpp
blob84e51d809a2fcff509b2fdab718a84d1b77c05a4
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/bench.h>
7 #include <crypto/sha256.h>
8 #include <key.h>
9 #include <validation.h>
10 #include <util.h>
11 #include <random.h>
13 int
14 main(int argc, char** argv)
16 SHA256AutoDetect();
17 RandomInit();
18 ECC_Start();
19 SetupEnvironment();
20 fPrintToDebugLog = false; // don't want to write to debug.log file
22 benchmark::BenchRunner::RunAll();
24 ECC_Stop();