Graphene Updates and DApp Support #643

Closed
nathanielhourt wants to merge 84 commits from dapp-support into develop
Showing only changes of commit f2814a451c - Show all commits

View file

@ -39,9 +39,9 @@ namespace impl {
std::string clean_name( const std::string& name )
{
const static std::string prefix = "graphene::chain::";
const static std::string prefix = "graphene::protocol::";
const static std::string suffix = "_operation";
// graphene::chain::.*_operation
// graphene::protocol::.*_operation
if( (name.size() >= prefix.size() + suffix.size())
&& (name.substr( 0, prefix.size() ) == prefix)
&& (name.substr( name.size()-suffix.size(), suffix.size() ) == suffix )