mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Various cleanups:
* Replace SYSTEM_NAME and other macros with C++ constructs * Remove RIPPLE_ARRAYSIZE and use std::extent or ranged for loops * Remove old-style, unused offer crossing unit test * Make STAmount::saFromRate free and remove default argument
This commit is contained in:
@@ -224,9 +224,17 @@ inline bool isTecClaim(TER x)
|
||||
}
|
||||
|
||||
// VFALCO TODO group these into a shell class along with the defines above.
|
||||
extern bool transResultInfo (TER terCode, std::string& strToken, std::string& strHuman);
|
||||
extern std::string transToken (TER terCode);
|
||||
extern std::string transHuman (TER terCode);
|
||||
extern
|
||||
bool
|
||||
transResultInfo (TER code, std::string& token, std::string& text);
|
||||
|
||||
extern
|
||||
std::string
|
||||
transToken (TER code);
|
||||
|
||||
extern
|
||||
std::string
|
||||
transHuman (TER code);
|
||||
|
||||
} // ripple
|
||||
|
||||
|
||||
Reference in New Issue
Block a user