Infrastructure for "tx" RPC command to track transactions.

This commit is contained in:
JoelKatz
2012-01-20 16:43:53 -08:00
parent 50e23112e3
commit ba6d040266
6 changed files with 72 additions and 2 deletions

View File

@@ -7,6 +7,8 @@
#include <boost/shared_ptr.hpp>
#include "json/value.h"
#include "uint256.h"
#include "Transaction.h"
@@ -49,6 +51,8 @@ public:
void performTransaction(); // perform this transaction as if we received it from the network
bool makeTransaction(); // create a transaction object according to these rules
Json::Value getJson() const;
};
#endif