Bitcoin Core 22.99.0
P2P Digital Currency
moneystr.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-2020 The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
9#ifndef BITCOIN_UTIL_MONEYSTR_H
10#define BITCOIN_UTIL_MONEYSTR_H
11
12#include <attributes.h>
13#include <consensus/amount.h>
14
15#include <optional>
16#include <string>
17
18/* Do not use these functions to represent or parse monetary amounts to or from
19 * JSON but use AmountFromValue and ValueFromAmount for that.
20 */
21std::string FormatMoney(const CAmount n);
23std::optional<CAmount> ParseMoney(const std::string& str);
24
25#endif // BITCOIN_UTIL_MONEYSTR_H
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
std::string FormatMoney(const CAmount n)
Money parsing/formatting utilities.
Definition: moneystr.cpp:15
std::optional< CAmount > ParseMoney(const std::string &str)
Parse an amount denoted in full coins.
Definition: moneystr.cpp:41