mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Reformatting using AStyle
This commit is contained in:
@@ -3,22 +3,27 @@
|
||||
class ChangeTransactor : public Transactor
|
||||
{
|
||||
public:
|
||||
ChangeTransactor(const SerializedTransaction& txn, TransactionEngineParams params, TransactionEngine *engine)
|
||||
: Transactor(txn, params, engine)
|
||||
{ ; }
|
||||
ChangeTransactor (const SerializedTransaction& txn, TransactionEngineParams params, TransactionEngine* engine)
|
||||
: Transactor (txn, params, engine)
|
||||
{
|
||||
;
|
||||
}
|
||||
|
||||
TER doApply();
|
||||
TER checkSig();
|
||||
TER checkSeq();
|
||||
TER payFee();
|
||||
TER preCheck();
|
||||
TER doApply ();
|
||||
TER checkSig ();
|
||||
TER checkSeq ();
|
||||
TER payFee ();
|
||||
TER preCheck ();
|
||||
|
||||
private:
|
||||
TER applyFeature();
|
||||
TER applyFee();
|
||||
TER applyFeature ();
|
||||
TER applyFee ();
|
||||
|
||||
// VFALCO TODO Can this be removed?
|
||||
bool mustHaveValidAccount() { return false; }
|
||||
bool mustHaveValidAccount ()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
// vim:ts=4
|
||||
|
||||
Reference in New Issue
Block a user