forked from lthn/blockchain
26 lines
787 B
C++
26 lines
787 B
C++
|
|
// Copyright (c) 2023-2023 Zano Project
|
||
|
|
// Copyright (c) 2023-2023 sowle (val@zano.org, crypto.sowle@gmail.com)
|
||
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
|
|
//
|
||
|
|
#include "epee/include/misc_log_ex.h"
|
||
|
|
//#include "zarcanum.h"
|
||
|
|
#include "msm.h"
|
||
|
|
//#include "../currency_core/crypto_config.h" // TODO: move it to the crypto
|
||
|
|
//#include "../common/crypto_stream_operators.h" // TODO: move it to the crypto
|
||
|
|
|
||
|
|
#if 0
|
||
|
|
# define DBG_VAL_PRINT(x) std::cout << std::setw(30) << std::left << #x ": " << x << std::endl
|
||
|
|
# define DBG_PRINT(x) std::cout << x << std::endl
|
||
|
|
#else
|
||
|
|
# define DBG_VAL_PRINT(x) (void(0))
|
||
|
|
# define DBG_PRINT(x) (void(0))
|
||
|
|
#endif
|
||
|
|
|
||
|
|
namespace crypto
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
} // namespace crypto
|