added CURRENCY_ATOM to express minimum indivisible unit

also moved CURRENCY_* into feerate.h file to work around MSVC bug
pull/764/head
Karl-Johan Alm 5 years ago
parent d4f9ae0025
commit 69158b41fc
No known key found for this signature in database
GPG Key ID: 57AF762DB3353322

@ -7,8 +7,6 @@
#include <tinyformat.h>
const std::string CURRENCY_UNIT = "BTC";
CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nBytes_)
{
assert(nBytes_ <= uint64_t(std::numeric_limits<int64_t>::max()));

@ -11,7 +11,8 @@
#include <string>
extern const std::string CURRENCY_UNIT;
const std::string CURRENCY_UNIT = "BTC"; // One formatted unit
const std::string CURRENCY_ATOM = "sat"; // One indivisible minimum value unit
/**
* Fee rate in satoshis per kilobyte: CAmount / kB

Loading…
Cancel
Save