Cleanups.

This commit is contained in:
JoelKatz
2012-05-28 23:49:43 -07:00
parent 06535a1a43
commit 01f16914ce
2 changed files with 21 additions and 17 deletions

View File

@@ -225,6 +225,9 @@ protected:
STAmount(const char *name, uint64 value, bool isNegative)
: SerializedType(name), mValue(value), mOffset(0), mIsNative(true), mIsNegative(isNegative)
{ ; }
STAmount(const char *n, const uint160& cur, uint64 val, int off, bool isNative, bool isNegative)
: SerializedType(n), mCurrency(cur), mValue(val), mOffset(off), mIsNative(isNative), mIsNegative(isNegative)
{ ; }
uint64 toUInt64() const;