mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
14 lines
317 B
C++
14 lines
317 B
C++
#ifndef WALLETADDTRANSACTOR_H
|
|
#define WALLETADDTRANSACTOR_H
|
|
|
|
class WalletAddTransactor : public Transactor
|
|
{
|
|
public:
|
|
WalletAddTransactor (const SerializedTransaction& txn, TransactionEngineParams params, TransactionEngine* engine) : Transactor (txn, params, engine) {}
|
|
|
|
TER doApply ();
|
|
};
|
|
#endif
|
|
|
|
// vim:ts=4
|