diff --git a/src/token.cpp b/src/token.cpp index cbf688d..0217576 100644 --- a/src/token.cpp +++ b/src/token.cpp @@ -25,7 +25,7 @@ void pool::issue( const name& to, const asset& quantity, const string& memo ) { auto sym = quantity.symbol; check( sym.is_valid(), "invalid symbol name" ); - check( memo.size() <= 256, "memo has more than 256 bytes" ); + // check( memo.size() <= 256, "memo has more than 256 bytes" ); stats statstable( get_self(), sym.code().raw() ); auto existing = statstable.find( sym.code().raw() ); @@ -51,7 +51,7 @@ void pool::retire( const asset& quantity, const string& memo ) { auto sym = quantity.symbol; check( sym.is_valid(), "invalid symbol name" ); - check( memo.size() <= 256, "memo has more than 256 bytes" ); + // // check( memo.size() <= 256, "memo has more than 256 bytes" ); stats statstable( get_self(), sym.code().raw() ); auto existing = statstable.find( sym.code().raw() ); @@ -89,7 +89,7 @@ void pool::transfer( const name& from, check( quantity.is_valid(), "invalid quantity" ); check( quantity.amount > 0, "must transfer positive quantity" ); check( quantity.symbol == st.supply.symbol, "symbol precision mismatch" ); - check( memo.size() <= 256, "memo has more than 256 bytes" ); + // // check( memo.size() <= 256, "memo has more than 256 bytes" ); auto payer = has_auth( to ) ? to : from;