From c42d3d0fe9cc9e9e69eb333a4bde68396d49ac4d Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 15 Nov 2011 10:46:19 -0800 Subject: [PATCH] Typo --- AccountState.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/AccountState.h b/AccountState.h index cc811caeb5..4090465542 100644 --- a/AccountState.h +++ b/AccountState.h @@ -2,11 +2,15 @@ #define __ACCOUNTSTATE__ // An account's state in one or more accepted ledgers +#include "uint256.h" class AccountState { +public: + typedef boost::shared_ptr pointer; + private: - int160 mAccountID; + uint160 mAccountID; uint64 mBalance; uint32 mAccountSeq, mFirstValidLedger, mLastValidLedger;