rippled
Loading...
Searching...
No Matches
AccountCurrencies.h
1#ifndef XRPL_APP_PATHS_ACCOUNTCURRENCIES_H_INCLUDED
2#define XRPL_APP_PATHS_ACCOUNTCURRENCIES_H_INCLUDED
3
4#include <xrpld/app/paths/RippleLineCache.h>
5
6#include <xrpl/protocol/UintTypes.h>
7
8namespace ripple {
9
10hash_set<Currency>
12 AccountID const& account,
14 bool includeXRP);
15
16hash_set<Currency>
18 AccountID const& account,
20 bool includeXRP);
21
22} // namespace ripple
23
24#endif
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:6
base_uint< 160, detail::AccountIDTag > AccountID
A 160-bit unsigned that uniquely identifies an account.
Definition AccountID.h:29
hash_set< Currency > accountDestCurrencies(AccountID const &account, std::shared_ptr< RippleLineCache > const &lrCache, bool includeXRP)
hash_set< Currency > accountSourceCurrencies(AccountID const &account, std::shared_ptr< RippleLineCache > const &lrCache, bool includeXRP)