Fulcrum/bitcoin/amount.cpp
Calin Culianu 195551dfe7 Imported more bitcoin code: transaction class and serialization/deser
We will need this in the future to verify tx's and compose tx's

The Tx class is pretty usable as-is.. just manipulates a byte stream.
2019-05-01 00:40:29 +03:00

20 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