#ifndef __TRANSACTION__ #define __TRANSACTION__ #include "uint256.h" #include "newcoin.pb.h" #include "Hanko.h" #include "Serializer.h" #include #include #include /* We could have made something that inherited from the protobuf transaction but this seemed simpler */ enum TransStatus { NEW, // just received / generated INVALID, // no valid signature, insufficient funds INCLUDED, // added to the current ledger CONFLICTED, // losing to a conflicting transaction COMMITTED, // known to be in a ledger HELD, // not valid now, maybe later }; class Account; class LocalAccount; class Transaction : public boost::enable_shared_from_this { public: static const uint32 TransSignMagic=0x54584E00; // "TXN" private: uint256 mTransactionID; uint160 mAccountFrom, mAccountTo; uint64 mAmount; uint32 mFromAccountSeq, mSourceLedger, mIdent; std::vector mSignature; uint32 mInLedger; TransStatus mStatus; void UpdateHash(void); public: Transaction(); Transaction(const std::vector rawTransaction); Transaction(const std::string sqlReply); Transaction(TransStatus Status, LocalAccount& fromLocal, const Account& from, uint32 fromSeq, const uint160& to, uint64 amount, uint32 ident, uint32 ledger); bool sign(LocalAccount& fromLocalAccount, const Account& fromAccount); bool checkSign(const Account& fromAccount) const; Serializer::pointer getRawUnsigned(const Account& from) const; Serializer::pointer getRawSigned(const Account& from) const; const uint256& getID() const { return mTransactionID; } const uint160& getFromAccount() const { return mAccountFrom; } const uint160& getToAccount() const { return mAccountTo; } uint64 getAmount() const { return mAmount; } uint32 getFromAccountSeq() const { return mFromAccountSeq; } uint32 getSourceLedger() const { return mSourceLedger; } uint32 getIdent() const { return mIdent; } const std::vector& getSignature() const { return mSignature; } uint32 getLedger() const { return mInLedger; } TransStatus getStatus() const { return mStatus; } void setStatus(TransStatus st); void setLedger(uint32 Ledger); bool operator<(const Transaction &) const; bool operator>(const Transaction &) const; bool operator==(const Transaction &) const; bool operator!=(const Transaction &) const; bool operator<=(const Transaction &) const; bool operator>=(const Transaction &) const; }; typedef boost::shared_ptr TransactionPtr; #endif