mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
#ifndef __ACCOUNTSTATE__
|
|
#define __ACCOUNTSTATE__
|
|
|
|
// An account's state
|
|
// Used to track information about a local account
|
|
|
|
#include <vector>
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include "../json/value.h"
|
|
|
|
#include "types.h"
|
|
#include "NewcoinAddress.h"
|
|
#include "SerializedLedger.h"
|
|
|
|
class AccountState
|
|
{
|
|
public:
|
|
typedef boost::shared_ptr<AccountState> pointer;
|
|
|
|
private:
|
|
NewcoinAddress mAccountID;
|
|
NewcoinAddress mAuthorizedKey;
|
|
SerializedLedgerEntry::pointer mLedgerEntry;
|
|
|
|
bool mValid;
|
|
|
|
public:
|
|
AccountState(const NewcoinAddress& AccountID); // For new accounts
|
|
AccountState(SerializedLedgerEntry::pointer ledgerEntry); // For accounts in a ledger
|
|
|
|
const NewcoinAddress& getAccountID() const { return mAccountID; }
|
|
STAmount getBalance() const { return mLedgerEntry->getIValueFieldAmount(sfBalance); }
|
|
uint32 getSeq() const { return mLedgerEntry->getIFieldU32(sfSequence); }
|
|
|
|
SerializedLedgerEntry::pointer getSLE() { return mLedgerEntry; }
|
|
const SerializedLedgerEntry& peekSLE() const { return *mLedgerEntry; }
|
|
SerializedLedgerEntry& peekSLE() { return *mLedgerEntry; }
|
|
|
|
std::vector<unsigned char> getRaw() const;
|
|
void addJson(Json::Value& value);
|
|
void dump();
|
|
};
|
|
|
|
#endif
|
|
// vim:ts=4
|