mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Missing from previous commits.
This commit is contained in:
24
src/cpp/ripple/ChangeTransactor.h
Normal file
24
src/cpp/ripple/ChangeTransactor.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#include "Transactor.h"
|
||||
|
||||
class ChangeTransactor : public Transactor
|
||||
{
|
||||
protected:
|
||||
|
||||
TER applyFeature();
|
||||
TER applyFee();
|
||||
|
||||
bool mustHaveValidAccount() { return false; }
|
||||
|
||||
public:
|
||||
ChangeTransactor(const SerializedTransaction& txn, TransactionEngineParams params, TransactionEngine *engine)
|
||||
: Transactor(txn, params, engine)
|
||||
{ ; }
|
||||
|
||||
TER doApply();
|
||||
TER checkSig();
|
||||
TER checkSeq();
|
||||
TER payFee();
|
||||
TER preCheck();
|
||||
};
|
||||
|
||||
// vim:ts=4
|
||||
Reference in New Issue
Block a user