Ref #1506/#1737: Fix clean_name()
This commit is contained in:
parent
c94e46f451
commit
f2814a451c
1 changed files with 2 additions and 2 deletions
|
|
@ -39,9 +39,9 @@ namespace impl {
|
||||||
|
|
||||||
std::string clean_name( const std::string& name )
|
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";
|
const static std::string suffix = "_operation";
|
||||||
// graphene::chain::.*_operation
|
// graphene::protocol::.*_operation
|
||||||
if( (name.size() >= prefix.size() + suffix.size())
|
if( (name.size() >= prefix.size() + suffix.size())
|
||||||
&& (name.substr( 0, prefix.size() ) == prefix)
|
&& (name.substr( 0, prefix.size() ) == prefix)
|
||||||
&& (name.substr( name.size()-suffix.size(), suffix.size() ) == suffix )
|
&& (name.substr( name.size()-suffix.size(), suffix.size() ) == suffix )
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue