Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
beem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
beem
Commits
ee7e49fb
Commit
ee7e49fb
authored
4 years ago
by
Holger
Browse files
Options
Downloads
Patches
Plain Diff
Fix changelog and unit test
parent
ac35ddf3
No related branches found
Branches containing commit
No related tags found
2 merge requests
!5
Taken current version of master branch in the https://github.com/holgern/beem
,
!4
Original changes pushed to master at https://github.com/holgern/beem
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.rst
+5
-1
5 additions, 1 deletion
CHANGELOG.rst
examples/print_comments.py
+2
-0
2 additions, 0 deletions
examples/print_comments.py
examples/print_votes.py
+2
-0
2 additions, 0 deletions
examples/print_votes.py
tests/beem/test_comment.py
+3
-3
3 additions, 3 deletions
tests/beem/test_comment.py
with
12 additions
and
4 deletions
CHANGELOG.rst
+
5
−
1
View file @
ee7e49fb
...
...
@@ -3,15 +3,19 @@ Changelog
0.23.0
------
* set hive as default for default_chain
* get_
nodes return hive nodes by defaul
t
* get_
steem_nodes added to NodeLis
t
* Prepared for Hive HF 24
* steem object in all classes is replaced by blockchain
* Hive class has been added
* Hive and Steem are now BlockChainInstance classes
* Hive and Steem have now is_hive and is_steem properties
* Each class has now blockchain_instance parameter (steem_instance is stil available)
* shared_blockchain_instance and set_shared_blockchain_instance can be used for Hive() and Steem() instances
* token_symbol, backed_token_symbol and vest_token_symbol
* Rename SteemWebsocket to NodeWebsocket and SteemNodeRPC to NodeRPC
* Rshares, vote percentage and SBD/HBD calculation has been fixed for votes
* post_rshares parameter added to all vote calculations
* Account class has now get_token_power(), get_voting_value() and get_vote_pct_for_vote_value()
0.22.14
-------
...
...
This diff is collapsed.
Click to expand it.
examples/print_comments.py
+
2
−
0
View file @
ee7e49fb
...
...
@@ -4,6 +4,7 @@ from datetime import timedelta
import
time
import
io
from
beem.blockchain
import
Blockchain
from
beem.instance
import
shared_blockchain_instance
from
beem.utils
import
parse_time
import
logging
log
=
logging
.
getLogger
(
__name__
)
...
...
@@ -22,5 +23,6 @@ class DemoBot(object):
if
__name__
==
"
__main__
"
:
tb
=
DemoBot
()
blockchain
=
Blockchain
()
print
(
"
Starting on %s network
"
%
shared_blockchain_instance
().
get_blockchain_name
())
for
vote
in
blockchain
.
stream
(
opNames
=
[
"
comment
"
]):
tb
.
comment
(
vote
)
This diff is collapsed.
Click to expand it.
examples/print_votes.py
+
2
−
0
View file @
ee7e49fb
...
...
@@ -4,6 +4,7 @@ from datetime import timedelta
import
time
import
io
from
beem.blockchain
import
Blockchain
from
beem.instance
import
shared_blockchain_instance
from
beem.utils
import
parse_time
import
logging
log
=
logging
.
getLogger
(
__name__
)
...
...
@@ -25,5 +26,6 @@ class DemoBot(object):
if
__name__
==
"
__main__
"
:
tb
=
DemoBot
()
blockchain
=
Blockchain
()
print
(
"
Starting on %s network
"
%
shared_blockchain_instance
().
get_blockchain_name
())
for
vote
in
blockchain
.
stream
(
opNames
=
[
"
vote
"
]):
tb
.
vote
(
vote
)
This diff is collapsed.
Click to expand it.
tests/beem/test_comment.py
+
3
−
3
View file @
ee7e49fb
...
...
@@ -21,8 +21,8 @@ class Testcases(unittest.TestCase):
@classmethod
def
setUpClass
(
cls
):
nodelist
=
NodeList
()
nodelist
.
update_nodes
(
steem_instance
=
Steem
(
node
=
nodelist
.
get_nodes
(
hive
=
True
),
num_retries
=
10
))
node_list
=
nodelist
.
get_nodes
(
hive
=
True
)
nodelist
.
update_nodes
(
steem_instance
=
Steem
(
node
=
nodelist
.
get_
hive_
nodes
(),
num_retries
=
10
))
node_list
=
nodelist
.
get_
hive_
nodes
()
cls
.
bts
=
Steem
(
node
=
node_list
,
...
...
@@ -34,7 +34,7 @@ class Testcases(unittest.TestCase):
)
acc
=
Account
(
"
fullnodeupdate
"
,
steem_instance
=
cls
.
bts
)
comment
=
Comment
(
acc
.
get_blog_entries
(
limit
=
5
)[
-
1
],
steem_instance
=
cls
.
bts
)
comment
=
Comment
(
acc
.
get_blog_entries
(
limit
=
5
)[
0
],
steem_instance
=
cls
.
bts
)
cls
.
authorperm
=
comment
.
authorperm
[
author
,
permlink
]
=
resolve_authorperm
(
cls
.
authorperm
)
cls
.
author
=
author
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment