minor cleanup and lint fixes
This commit is contained in:
parent
bf2f4bc040
commit
34e44ebd1c
1 changed files with 8 additions and 6 deletions
|
@ -5272,8 +5272,10 @@ class Daemon(metaclass=JSONRPCServerType):
|
||||||
return await comment_client.jsonrpc_post(self.conf.comment_server, 'comment.Hide', pieces=pieces)
|
return await comment_client.jsonrpc_post(self.conf.comment_server, 'comment.Hide', pieces=pieces)
|
||||||
|
|
||||||
@requires(WALLET_COMPONENT)
|
@requires(WALLET_COMPONENT)
|
||||||
async def jsonrpc_comment_react(self, comment_id, channel_name=None, channel_id=None,
|
async def jsonrpc_comment_react(
|
||||||
channel_account_id=None, remove=False, clear_types=None, react_type=None, wallet_id=None):
|
self, comment_id, channel_name=None, channel_id=None,
|
||||||
|
channel_account_id=None, remove=False, clear_types=None, react_type=None, wallet_id=None
|
||||||
|
):
|
||||||
"""
|
"""
|
||||||
Create and associate a reaction emoji with a comment using your channel identity.
|
Create and associate a reaction emoji with a comment using your channel identity.
|
||||||
|
|
||||||
|
@ -5310,8 +5312,6 @@ class Daemon(metaclass=JSONRPCServerType):
|
||||||
wallet, channel_account_id, channel_id, channel_name, for_signing=True
|
wallet, channel_account_id, channel_id, channel_name, for_signing=True
|
||||||
)
|
)
|
||||||
|
|
||||||
print(channel)
|
|
||||||
|
|
||||||
react_body = {
|
react_body = {
|
||||||
'comment_ids': comment_id,
|
'comment_ids': comment_id,
|
||||||
'channel_id': channel_id,
|
'channel_id': channel_id,
|
||||||
|
@ -5327,8 +5327,10 @@ class Daemon(metaclass=JSONRPCServerType):
|
||||||
return response
|
return response
|
||||||
|
|
||||||
@requires(WALLET_COMPONENT)
|
@requires(WALLET_COMPONENT)
|
||||||
async def jsonrpc_comment_react_list(self, comment_id, channel_name=None, channel_id=None,
|
async def jsonrpc_comment_react_list(
|
||||||
channel_account_id=None, react_types=None, wallet_id=None):
|
self, comment_id, channel_name=None, channel_id=None,
|
||||||
|
channel_account_id=None, react_types=None, wallet_id=None
|
||||||
|
):
|
||||||
"""
|
"""
|
||||||
List reactions emoji with a claim using your channel identity.
|
List reactions emoji with a claim using your channel identity.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue