2019-03-28 22:07:55 +01:00
|
|
|
/* ethash: C/C++ implementation of Ethash, the Ethereum Proof of Work algorithm.
|
|
|
|
|
* Copyright 2019 Pawel Bylica.
|
|
|
|
|
* Licensed under the Apache License, Version 2.0.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
/** The ethash library version. */
|
2019-04-01 14:52:06 +03:00
|
|
|
#define ETHASH_VERSION "0.4.3"
|
2019-03-28 22:07:55 +01:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
namespace ethash
|
|
|
|
|
{
|
|
|
|
|
/// The ethash library version.
|
|
|
|
|
constexpr auto version = ETHASH_VERSION;
|
|
|
|
|
|
|
|
|
|
} // namespace ethash
|
|
|
|
|
#endif
|