From ff4a83cf64e70eec15e8a6a56ca6d7ab3f67b3c2 Mon Sep 17 00:00:00 2001 From: Anton Perkov Date: Fri, 4 May 2018 13:35:22 -0400 Subject: [PATCH] missing table userres added to system contract ABI #2661 --- contracts/eosio.system/eosio.system.abi | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/contracts/eosio.system/eosio.system.abi b/contracts/eosio.system/eosio.system.abi index fd9ea6222..048b75b8b 100644 --- a/contracts/eosio.system/eosio.system.abi +++ b/contracts/eosio.system/eosio.system.abi @@ -63,6 +63,15 @@ {"name":"cpu_weight", "type":"uint64"}, {"name":"storage_bytes", "type":"uint64"} ] + },{ + "name": "user_resources", + "base": "", + "fields": [ + {"name":"owner", "type":"account_name"}, + {"name":"net_weight", "type":"asset"}, + {"name":"cpu_weight", "type":"asset"}, + {"name":"storage_bytes", "type":"uint64"} + ] },{ "name": "total_resources", "base": "", @@ -267,6 +276,12 @@ "index_type": "i64", "key_names" : ["owner"], "key_types" : ["account_name"] + },{ + "name": "userres", + "type": "user_resources", + "index_type": "i64", + "key_names" : ["owner"], + "key_types" : ["uint64"] },{ "name": "totalband", "type": "total_resources", -- GitLab