COOPENOMICS  v1
Кооперативная Экономика
limit_auth_changes.hpp
См. документацию.
1#pragma once
2
3#include <eosio/multi_index.hpp>
4
5namespace eosiosystem {
6 using eosio::name;
7
8 struct [[eosio::table("limitauthchg"),eosio::contract("eosio.system")]] limit_auth_change {
9 uint8_t version = 0;
10 name account;
11 std::vector<name> allow_perms;
12 std::vector<name> disallow_perms;
13
14 uint64_t primary_key() const { return account.value; }
15
16 EOSLIB_SERIALIZE(limit_auth_change, (version)(account)(allow_perms)(disallow_perms))
17 };
18
19 typedef eosio::multi_index<"limitauthchg"_n, limit_auth_change> limit_auth_change_table;
20} // namespace eosiosystem
contract
Definition: eosio.msig_tests.cpp:977
Definition: eosio.msig.hpp:34
Definition: rammarket.hpp:7
eosio::multi_index<"limitauthchg"_n, limit_auth_change > limit_auth_change_table
Definition: limit_auth_changes.hpp:19
Структура, представляющая учетные записи аккаунтов.
Definition: accounts.hpp:60
Definition: limit_auth_changes.hpp:8
std::vector< name > disallow_perms
Definition: limit_auth_changes.hpp:12
name account
Definition: limit_auth_changes.hpp:10
std::vector< name > allow_perms
Definition: limit_auth_changes.hpp:11
uint64_t primary_key() const
Definition: limit_auth_changes.hpp:14