Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

Commit a5adc41

Browse files
committed
Fix typo and adapt changelog
1 parent 5b4d413 commit a5adc41

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Changelog
77
* RC costs adapted on changes from 0.20.6
88
* VIT chain fixed
99
* update_account_keys function added to account
10+
* beempy commands for post, reply and beneficiaries added
1011

1112
0.20.9
1213
------

beem/cli.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1628,7 +1628,7 @@ def post(body, account, title, permlink, tags, reply_identifier, community, bene
16281628
@click.argument('body', nargs=1)
16291629
@click.option('--account', '-a', help='Account are you posting from')
16301630
@click.option('--title', '-t', help='Title of the post')
1631-
def replay(authorperm, body, account, title):
1631+
def reply(authorperm, body, account, title):
16321632
"""replies to a comment"""
16331633
stm = shared_steem_instance()
16341634
if stm.rpc is not None:
@@ -1641,7 +1641,11 @@ def replay(authorperm, body, account, title):
16411641
c = Comment(authorperm, steem_instance=stm)
16421642
if title is None:
16431643
title = ""
1644-
c.rely(body, title=title, author=account)
1644+
tx = c.reply(body, title=title, author=account)
1645+
if stm.unsigned and stm.nobroadcast and stm.steemconnect is not None:
1646+
tx = stm.steemconnect.url_from_tx(tx)
1647+
tx = json.dumps(tx, indent=4)
1648+
print(tx)
16451649

16461650

16471651
@cli.command()

0 commit comments

Comments
 (0)