Files
hpcore/src/usr/user_common.hpp
Ravin Perera cc11ebd7b3 Event subscription infrastructure and ledger events. (#319)
- Introduced event subscription infrastructure for users.
- Added ability to subscribe to ledger events.
- Updated client lib for event subscription support.
2021-06-07 10:24:58 +05:30

15 lines
255 B
C++

#ifndef _HP_USR_USER_COMMON_
#define _HP_USR_USER_COMMON_
namespace usr
{
// List of notification channels users can subscribe to.
enum NOTIFICATION_CHANNEL
{
UNL_CHANGE = 0,
LEDGER_EVENT = 1
};
} // namespace usr
#endif