diff --git a/newcoin.vcxproj b/newcoin.vcxproj index 65bbd332c..2beb907c7 100644 --- a/newcoin.vcxproj +++ b/newcoin.vcxproj @@ -124,6 +124,8 @@ + + @@ -211,6 +213,8 @@ + + diff --git a/newcoin.vcxproj.filters b/newcoin.vcxproj.filters index b636aa260..d18959032 100644 --- a/newcoin.vcxproj.filters +++ b/newcoin.vcxproj.filters @@ -282,6 +282,12 @@ Source Files + + Source Files + + + Source Files + @@ -518,6 +524,12 @@ Header Files + + Header Files + + + Header Files + diff --git a/src/Ledger.h b/src/Ledger.h index b90d44089..3de26d5e0 100644 --- a/src/Ledger.h +++ b/src/Ledger.h @@ -115,7 +115,7 @@ public: void disarmDirty() { mTransactionMap->disarmDirty(); mAccountStateMap->disarmDirty(); } // This ledger has closed, will never be accepted, and is accepting - // new transactions to be re-repocessed when do accept a new last-closed ledger + // new transactions to be re-reprocessed when do accept a new last-closed ledger void bumpSeq() { mClosed = true; mLedgerSeq++; } // ledger signature operations diff --git a/src/SerializedTypes.h b/src/SerializedTypes.h index 63977102c..ca283c3de 100644 --- a/src/SerializedTypes.h +++ b/src/SerializedTypes.h @@ -281,6 +281,7 @@ public: int getExponent() const { return mOffset; } uint64 getMantissa() const { return mValue; } + // When the currency is XNS, the value in raw units. S=signed uint64 getNValue() const { if (!mIsNative) throw std::runtime_error("not native"); return mValue; } void setNValue(uint64 v) { if (!mIsNative) throw std::runtime_error("not native"); mValue = v; } int64 getSNValue() const;