Skip to content

Commit

Permalink
Fix typo and adapt changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Nov 9, 2018
1 parent 5b4d413 commit a5adc41
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Expand Up @@ -7,6 +7,7 @@ Changelog
* RC costs adapted on changes from 0.20.6
* VIT chain fixed
* update_account_keys function added to account
* beempy commands for post, reply and beneficiaries added

0.20.9
------
Expand Down
8 changes: 6 additions & 2 deletions beem/cli.py
Expand Up @@ -1628,7 +1628,7 @@ def post(body, account, title, permlink, tags, reply_identifier, community, bene
@click.argument('body', nargs=1)
@click.option('--account', '-a', help='Account are you posting from')
@click.option('--title', '-t', help='Title of the post')
def replay(authorperm, body, account, title):
def reply(authorperm, body, account, title):
"""replies to a comment"""
stm = shared_steem_instance()
if stm.rpc is not None:
Expand All @@ -1641,7 +1641,11 @@ def replay(authorperm, body, account, title):
c = Comment(authorperm, steem_instance=stm)
if title is None:
title = ""
c.rely(body, title=title, author=account)
tx = c.reply(body, title=title, author=account)
if stm.unsigned and stm.nobroadcast and stm.steemconnect is not None:
tx = stm.steemconnect.url_from_tx(tx)
tx = json.dumps(tx, indent=4)
print(tx)


@cli.command()
Expand Down

0 comments on commit a5adc41

Please sign in to comment.