mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-19 13:18:32 +02:00
21 lines
579 B
C++
21 lines
579 B
C++
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
||
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
||
|
|
// Copyright (c) 2017-2018 The Bitcoin developers
|
||
|
|
// Distributed under the MIT software license, see the accompanying
|
||
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
|
|
|
||
|
|
#include "amount.h"
|
||
|
|
|
||
|
|
#include "tinyformat.h"
|
||
|
|
|
||
|
|
namespace bitcoin {
|
||
|
|
|
||
|
|
const std::string CURRENCY_UNIT = "BCH";
|
||
|
|
|
||
|
|
std::string Amount::ToString() const {
|
||
|
|
return strprintf("%d.%08d %s", *this / COIN, (*this % COIN) / SATOSHI,
|
||
|
|
CURRENCY_UNIT);
|
||
|
|
}
|
||
|
|
|
||
|
|
} // end namespace bitcoin
|