Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. void mycontract::transfer(eosio::name const & from, eosio::name const & to, eosio::asset const & quantity, std::string const & memo)
  2. {
  3. if(to != get_self()) return;
  4. // Process the transfer
  5. }
  6.  
  7. void mycontract::transfer(eosio::name const & from, eosio::name const & to, eosio::asset const & quantity, std::string const & memo)
  8. {
  9. if(get_first_receiver() != eosio::name("eosio.token")) return;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement