mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
20 lines
530 B
C++
20 lines
530 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#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
|