mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
The Ripple protocol represent transfer rates and trust line qualities as fractions of one billion. For example, a transfer rate of 1% is represented as 1010000000. Previously, such rates where represented either as std::uint32_t or std::uint64_t. Other, nominally related types, also used an integral representation and could be unintentionally substituted. The new Rate class addresses this by providing a simple, type safe alternative which also helps make the code self-documenting since arithmetic operations now can be clearly understood to involve the scaling of an amount by a rate.
49 lines
2.3 KiB
C++
49 lines
2.3 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012, 2013 Ripple Labs Inc.
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include <BeastConfig.h>
|
|
|
|
#include <ripple/app/paths/RippleState.cpp>
|
|
#include <ripple/app/paths/AccountCurrencies.cpp>
|
|
#include <ripple/app/paths/Credit.cpp>
|
|
#include <ripple/app/paths/Pathfinder.cpp>
|
|
#include <ripple/app/paths/Node.cpp>
|
|
#include <ripple/app/paths/PathRequest.cpp>
|
|
#include <ripple/app/paths/PathRequests.cpp>
|
|
#include <ripple/app/paths/PathState.cpp>
|
|
#include <ripple/app/paths/RippleCalc.cpp>
|
|
#include <ripple/app/paths/RippleLineCache.cpp>
|
|
#include <ripple/app/paths/Flow.cpp>
|
|
#include <ripple/app/paths/impl/PaySteps.cpp>
|
|
#include <ripple/app/paths/impl/DirectStep.cpp>
|
|
#include <ripple/app/paths/impl/BookStep.cpp>
|
|
#include <ripple/app/paths/impl/XRPEndpointStep.cpp>
|
|
|
|
#include <ripple/app/paths/cursor/AdvanceNode.cpp>
|
|
#include <ripple/app/paths/cursor/DeliverNodeForward.cpp>
|
|
#include <ripple/app/paths/cursor/DeliverNodeReverse.cpp>
|
|
#include <ripple/app/paths/cursor/EffectiveRate.cpp>
|
|
#include <ripple/app/paths/cursor/ForwardLiquidity.cpp>
|
|
#include <ripple/app/paths/cursor/ForwardLiquidityForAccount.cpp>
|
|
#include <ripple/app/paths/cursor/Liquidity.cpp>
|
|
#include <ripple/app/paths/cursor/NextIncrement.cpp>
|
|
#include <ripple/app/paths/cursor/ReverseLiquidity.cpp>
|
|
#include <ripple/app/paths/cursor/ReverseLiquidityForAccount.cpp>
|
|
#include <ripple/app/paths/cursor/RippleLiquidity.cpp>
|