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
d0abdfcc
Commit
d0abdfcc
authored
6 years ago
by
Holger
Browse files
Options
Downloads
Patches
Plain Diff
Fix typo and improved handling of symbols in comment
parent
305ed6bc
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
beem/comment.py
+16
-4
16 additions, 4 deletions
beem/comment.py
beem/snapshot.py
+1
-1
1 addition, 1 deletion
beem/snapshot.py
beem/steem.py
+2
-0
2 additions, 0 deletions
beem/steem.py
with
19 additions
and
5 deletions
beem/comment.py
+
16
−
4
View file @
d0abdfcc
...
...
@@ -88,9 +88,13 @@ class Comment(BlockchainObject):
"
total_pending_payout_value
"
,
"
promoted
"
,
]
if
self
.
steem
.
sbd_symbol
is
not
None
:
symbol
=
self
.
steem
.
sbd_symbol
else
:
symbol
=
self
.
steem
.
steem_symbol
for
p
in
sbd_amounts
:
if
p
in
comment
and
isinstance
(
comment
.
get
(
p
),
(
string_types
,
list
,
dict
)):
comment
[
p
]
=
Amount
(
comment
.
get
(
p
,
"
0.000 %s
"
%
(
self
.
steem
.
sbd_
symbol
)),
steem_instance
=
self
.
steem
)
if
p
in
comment
and
isinstance
(
comment
.
get
(
p
),
(
string_types
,
list
,
dict
))
and
symbol
is
not
None
:
comment
[
p
]
=
Amount
(
comment
.
get
(
p
,
"
0.000 %s
"
%
(
symbol
)),
steem_instance
=
self
.
steem
)
# turn json_metadata into python dict
meta_str
=
comment
.
get
(
"
json_metadata
"
,
"
{}
"
)
...
...
@@ -276,7 +280,11 @@ class Comment(BlockchainObject):
def
reward
(
self
):
"""
Return the estimated total SBD reward.
"""
a_zero
=
Amount
(
0
,
self
.
steem
.
sbd_symbol
,
steem_instance
=
self
.
steem
)
if
self
.
steem
.
sbd_symbol
is
not
None
:
symbol
=
self
.
steem
.
sbd_symbol
else
:
symbol
=
self
.
steem
.
steem_symbol
a_zero
=
Amount
(
0
,
symbol
,
steem_instance
=
self
.
steem
)
total
=
Amount
(
self
.
get
(
"
total_payout_value
"
,
a_zero
),
steem_instance
=
self
.
steem
)
pending
=
Amount
(
self
.
get
(
"
pending_payout_value
"
,
a_zero
),
steem_instance
=
self
.
steem
)
return
total
+
pending
...
...
@@ -285,7 +293,11 @@ class Comment(BlockchainObject):
"""
Return if the payout is pending (the post/comment
is younger than 7 days)
"""
a_zero
=
Amount
(
0
,
self
.
steem
.
sbd_symbol
,
steem_instance
=
self
.
steem
)
if
self
.
steem
.
sbd_symbol
is
not
None
:
symbol
=
self
.
steem
.
sbd_symbol
else
:
symbol
=
self
.
steem
.
steem_symbol
a_zero
=
Amount
(
0
,
symbol
,
steem_instance
=
self
.
steem
)
total
=
Amount
(
self
.
get
(
"
total_payout_value
"
,
a_zero
),
steem_instance
=
self
.
steem
)
post_age_days
=
self
.
time_elapsed
().
total_seconds
()
/
60
/
60
/
24
return
post_age_days
<
7.0
and
float
(
total
)
==
0
...
...
This diff is collapsed.
Click to expand it.
beem/snapshot.py
+
1
−
1
View file @
d0abdfcc
...
...
@@ -40,7 +40,7 @@ class AccountSnapshot(list):
"""
self
.
own_vests
=
[
Amount
(
0
,
self
.
steem
.
vests_symbol
,
steem_instance
=
self
.
steem
)]
self
.
own_steem
=
[
Amount
(
0
,
self
.
steem
.
steem_symbol
,
steem_instance
=
self
.
steem
)]
self
.
own_sbd
=
[
Amount
(
0
,
self
.
steem
.
s
teem
_symbol
,
steem_instance
=
self
.
steem
)]
self
.
own_sbd
=
[
Amount
(
0
,
self
.
steem
.
s
bd
_symbol
,
steem_instance
=
self
.
steem
)]
self
.
delegated_vests_in
=
[{}]
self
.
delegated_vests_out
=
[{}]
self
.
timestamps
=
[
addTzInfo
(
datetime
(
1970
,
1
,
1
,
0
,
0
,
0
,
0
))]
...
...
This diff is collapsed.
Click to expand it.
beem/steem.py
+
2
−
0
View file @
d0abdfcc
...
...
@@ -1907,6 +1907,8 @@ class Steem(object):
for
asset
in
self
.
chain_params
[
'
chain_assets
'
]:
if
asset
[
'
id
'
]
==
asset_id
:
return
asset
[
'
symbol
'
]
if
asset_id
<
3
:
return
None
raise
KeyError
(
"
asset ID not found in chain assets
"
)
@property
...
...
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