Skip to content
Snippets Groups Projects
Commit 98f19814 authored by furion's avatar furion
Browse files

[community] custom_json id overloading

parent b12e0989
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,9 @@ class Community:
"""
_id = 'com.steemit.community'
_roles = ['admin', 'moderator', 'poster']
_valid_settings = ['name', 'about', 'description', 'language', 'nsfw']
_valid_settings = ['title', 'about', 'description', 'language', 'is_nsfw']
def __init__(self, community_name: str, account_name: str, steem_instance: Steem = None, **kwargs):
self.steem = steem_instance or Steem(**kwargs)
......@@ -132,7 +133,7 @@ class Community:
**{'json': community_op,
'required_auths': [],
'required_posting_auths': [self.account],
'id': 'com.steemit.community'})
'id': Community._id})
return self.steem.commit.finalizeOp(op, self.account, 'posting')
def _op(self, action: str, **params):
......
......@@ -25,6 +25,7 @@ setup(
'pytest-console-scripts'],
install_requires=[
'steem==0.18.1',
'maya',
'toolz',
'funcy',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment