Files
xahaud/AccountState.h
JoelKatz e9ae645e3b Transaction Infrastructure Work:
Raw account class (address + public key)
Account State class (account + balance + ledgers valid)
Raw Hanko class
Low-level tranasaction class
Small wallet and key bits
Misc updates to the protocol.
Protocol addition to allow code to wait for replies, but that may not be a good idea.
2011-11-11 14:13:25 -08:00

17 lines
261 B
C++

#ifndef __ACCOUNTSTATE__
#define __ACCOUNTSTATE__
// An account's state in one or more accepted ledgers
class AccountState
{
private:
int160 mAccountID;
uint64 mBalance;
uint32 mAccountSeq, mFirstValidLedger, mLastValidLedger;
public:
};
#endif