mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
20 lines
526 B
C++
20 lines
526 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef TRUSTSETTRANSACTOR_H
|
|
#define TRUSTSETTRANSACTOR_H
|
|
|
|
class TrustSetTransactor : public Transactor
|
|
{
|
|
public:
|
|
TrustSetTransactor (const SerializedTransaction& txn, TransactionEngineParams params, TransactionEngine* engine) : Transactor (txn, params, engine) {}
|
|
|
|
TER doApply ();
|
|
};
|
|
#endif
|
|
|
|
// vim:ts=4
|