/** * @file * @copyright defined in eos/LICENSE.txt */ #include #include namespace proxy { //@abi proxy action struct PACKED( set_owner ) { account_name owner; }; //@abi proxy table struct PACKED( config ) { config( account_name o = account_name() ):owner(o){} const uint64_t key = N(config); account_name owner; }; using configs = table; } /// namespace proxy