Ref #1506: Isolate chain/protocol to its own library

This commit is contained in:
Nathan Hourt 2019-04-13 23:38:56 -05:00 committed by Nathan Hourt
parent f076bb2586
commit 9c71579d6e
No known key found for this signature in database
GPG key ID: B4344309A110851E
2 changed files with 2 additions and 1 deletions

View file

@ -659,7 +659,7 @@ public:
}
template<typename ID>
typename graphene::db::object_downcast_t<ID>get_object(ID id)const
graphene::db::object_downcast_t<ID> get_object(ID id)const
{
auto ob = _remote_db->get_objects({id}).front();
return ob.template as<graphene::db::object_downcast_t<ID>>( GRAPHENE_MAX_NESTED_OBJECTS );

View file

@ -23,3 +23,4 @@
*/
#define BOOST_TEST_MODULE "C++ Benchmarks for Graphene Blockchain Database"
#include <boost/test/included/unit_test.hpp>