Transactor for change/fee.

This commit is contained in:
JoelKatz
2013-04-16 11:16:52 -07:00
parent efb3c24518
commit 148b5b42a5
2 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#include "Transactor.h"
class ChangeTransactor : public Transactor
{
protected:
TER applyFeature();
TER applyFee();
public:
ChangeTransactor(const SerializedTransaction& txn, TransactionEngineParams params, TransactionEngine *engine)
: Transactor(txn, params, engine)
{ ; }
TER doApply();
TER checkSig();
TER checkSeq();
TER payFee();
};
// vim:ts=4