mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-22 09:23:04 -03:00
21 lines
474 B
C++
21 lines
474 B
C++
// Copyright (c) 2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "bench.h"
|
|
|
|
#include "key.h"
|
|
#include "validation.h"
|
|
#include "util.h"
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
ECC_Start();
|
|
SetupEnvironment();
|
|
fPrintToDebugLog = false; // don't want to write to debug.log file
|
|
|
|
benchmark::BenchRunner::RunAll();
|
|
|
|
ECC_Stop();
|
|
}
|