BitShares-Core  7.0.2
BitShares blockchain node software and command-line wallet software
Classes | Namespaces | Typedefs
transaction_history_object.hpp File Reference
#include <graphene/protocol/transaction.hpp>
#include <graphene/db/generic_index.hpp>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/member.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/mem_fun.hpp>

Go to the source code of this file.

Classes

class  graphene::chain::transaction_history_object
 

Namespaces

 graphene
 
 graphene::chain
 

Typedefs

typedef multi_index_container< transaction_history_object, indexed_by< ordered_unique< tag< by_id >, member< object, object_id_type, &object::id > >, hashed_unique< tag< by_trx_id >, BOOST_MULTI_INDEX_MEMBER(transaction_history_object, transaction_id_type, trx_id), std::hash< transaction_id_type > >, ordered_non_unique< tag< by_expiration >, const_mem_fun< transaction_history_object, time_point_sec, &transaction_history_object::get_expiration > > > > graphene::chain::transaction_multi_index_type
 
typedef generic_index< transaction_history_object, transaction_multi_index_type > graphene::chain::transaction_index