add seq to offer json

This commit is contained in:
jed
2012-12-10 12:05:50 -08:00
parent 35ec825d8c
commit eea2739f53
5 changed files with 8 additions and 4 deletions

View File

@@ -6,6 +6,7 @@ class Offer : public AccountItem
RippleAddress mAccount;
STAmount mTakerGets;
STAmount mTakerPays;
int mSeq;
Offer(SerializedLedgerEntry::pointer ledgerEntry); // For accounts in a ledger
@@ -17,5 +18,6 @@ public:
STAmount getTakerPays(){ return(mTakerPays); }
STAmount getTakerGets(){ return(mTakerGets); }
RippleAddress getAccount(){ return(mAccount); }
int getSeq(){ return(mSeq); }
};