This repository was archived by the owner on Jan 20, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Changelog
22=========
3+ 0.20.13
4+ -------
5+ * beempy post improved
6+ * beempy ImageUploader added
7+ * issues #125 and #126 fixed
8+ * VotedBeforeWaitTimeReached exception added
9+
10+ 0.20.12
11+ -------
12+ * pep8 formating improved
13+ * Too Many Requests error handled
14+ * different limit handling in WLS fixed for account history
15+ * percent-steem-dollars and max-accepted-payout added to beempy post
16+
3170.20.10
418-------
519* update_account_keys added for changing account keys
Original file line number Diff line number Diff line change @@ -22,14 +22,6 @@ class Testcases(unittest.TestCase):
2222 def setUpClass (cls ):
2323 nodelist = NodeList ()
2424 nodelist .update_nodes (steem_instance = Steem (node = nodelist .get_nodes (normal = True , appbase = True ), num_retries = 10 ))
25- cls .bts = Steem (
26- node = nodelist .get_nodes (appbase = False ),
27- nobroadcast = True ,
28- bundle = False ,
29- # Overwrite wallet to use this list of wifs only
30- keys = {"active" : wif },
31- num_retries = 10
32- )
3325 cls .appbase = Steem (
3426 node = nodelist .get_nodes (appbase = True , dev = True ),
3527 nobroadcast = True ,
@@ -39,15 +31,8 @@ def setUpClass(cls):
3931 num_retries = 10
4032 )
4133
42- @parameterized .expand ([
43- ("non_appbase" ),
44- ("appbase" ),
45- ])
46- def test_constants (self , node_param ):
47- if node_param == "non_appbase" :
48- stm = self .bts
49- else :
50- stm = self .appbase
34+ def test_constants (self ):
35+ stm = self .appbase
5136 steem_conf = stm .get_config ()
5237 if "STEEM_100_PERCENT" in steem_conf :
5338 STEEM_100_PERCENT = steem_conf ['STEEM_100_PERCENT' ]
You can’t perform that action at this time.
0 commit comments