You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
468 B
21 lines
468 B
// 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 "main.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(); |
|
}
|
|
|