From f4ddb29eda41a27476422e642ba362972b01ad74 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 8 May 2012 03:43:13 -0700 Subject: [PATCH] Cleanups. --- src/Ledger.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ledger.h b/src/Ledger.h index cd561f529..90b1d7a07 100644 --- a/src/Ledger.h +++ b/src/Ledger.h @@ -58,7 +58,7 @@ public: private: uint256 mHash, mParentHash, mTransHash, mAccountHash; uint64 mTotCoins; - uint64 mTimeStamp; // when this ledger closes + uint64 mCloseTime; // when this ledger closes uint32 mLedgerSeq; uint16 mLedgerInterval; bool mClosed, mValidHash, mAccepted, mImmutable; @@ -102,7 +102,7 @@ public: const uint256& getTransHash() const { return mTransHash; } const uint256& getAccountHash() const { return mAccountHash; } uint64 getTotalCoins() const { return mTotCoins; } - uint64 getRawTimeStamp() const { return mTimeStamp; } + uint64 getCloseTimeNC() const { return mCloseTime; } uint32 getLedgerSeq() const { return mLedgerSeq; } uint16 getInterval() const { return mLedgerInterval; }