Beginning transaction persistance.

This commit is contained in:
JoelKatz
2012-06-09 19:12:06 -07:00
parent 7a511d36ef
commit 197a19b996
4 changed files with 40 additions and 4 deletions

View File

@@ -116,6 +116,14 @@ public:
bool sign(const NewcoinAddress& naAccountPrivate);
bool checkSign(const NewcoinAddress& naAccountPublic) const;
// SQL Functions
static std::string getSQLValueHeader();
static std::string getSQLInsertHeader();
std::string getSQL(std::string& sql, uint32 inLedger, char status) const;
std::string getSQL(uint32 inLedger, char status) const;
std::string getSQL(Serializer rawTxn, uint32 inLedger, char status) const;
};
#endif