create account

重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复 by oflyhigh

View this thread on: hive.blogpeakd.comecency.com
· @oflyhigh ·
$216.42
重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复
今天,微信群里一个朋友遇到带宽超限无法操作的问题,向我求助,于是我打算代理给他两个2个SP,这样就能解决这个问题了。结果却遇到了问题,解决问题以后,我想大家可能会遇到类似情况,就写出来分享一下,希望对遇到类似问题的朋友有所帮助。

![](https://steemitimages.com/DQmNm5AScSeG8kvjXeNYYiktR3CVMXoAxJ8ioxdNuS9E6As/image.png)
(图源 :[pixabay](https://pixabay.com))

# 代码出问题了

在我的程序中,我使用如下函数来处理SP代理
```
def delegate(steem, from_a, to, sp):
    try:
        vests = '{} VESTS'.format(Converter().sp_to_vests(sp))
        steem.delegate_vesting_shares(to, vests, from_a)
    except:
        print('Something Wrong!')
```

其中steem是Steem类示例,from、to不用解释啦,sp是要代理的SP数量。

因为这段代码以前一直好用,我也没想太多,直接执行,结果等了半天没有响应。杀掉程序后,我就想哪出问题了呢?后来想起来[节点 steemd.steemit.com 在1月6日停止使用了](https://steemit.com/steemitdev/@oflyhigh/steemd-steemit-com-1-6-api-steemit-com),为此我还特意发帖给大家提示,没想到我的旧代码居然还没更新节点。

# 定位问题

为了更好的理解这个问题,我做了如下测试:
![](https://steemitimages.com/DQmZxomoxzSLgfAqnNyN2KUVz8RgFhPggZAi7Uw3r5cJhQe/image.png)
脚本会一直等待下去

如果换成
![](https://steemitimages.com/DQmeVQHz6hzJxmWeJWT2KxeQVYY8UpTqm2zekV27vRSy5KA/image.png)
脚本响应正常。


于是将我脚本创建Steem类实例的代码由:
 >`steem=Steem()`

更新为
 > `steem=Steem(nodes=['https://api.steemit.com'])`

信心满满的再次运行,这次总归该代理成功了吧?嗯,怎么还是运行半天没有响应?这不科学呀,又是灵异事件,问题会出在哪里呢?最终我的目光锁定在***`Converter().sp_to_vests(sp)`***这句代码上。

看了一下Converter类的初始化代码,其中有如下语句:
>`self.steemd = steemd_instance or shared_steemd_instance()`

也就是说,如果不传入steemd,则使用共享steemd实例,而共享steemd实例尚不存在的话,使用如下代码创建
>`_shared_steemd_instance = stm.steemd.Steemd(nodes=get_config_node_list())`
***注:此处nodes=get_config_node_list()是多余的,详见下边代码***

而如果我们没有配置node列表,Steemd实例初始化中就会使用代码中默认的节点
>`nodes = get_config_node_list() or ['https://steemd.steemit.com']`

看到问题了吗?
***代码中还在使用`https://steemd.steemit.com`这个已经停用的节点!***

# 解决问题

好了,我们已经发现了问题所在
* 一个是创建Steem类实例的时要使用新节点
* 一个是共享Steem类实例使用了代码旧的节点

那么要解决这些问题就很简单了。

### 解决方法

* 创建实例时使用:
`steem=Steem(nodes=['https://api.steemit.com'])`
* 调用Converter类时指定实例:
`Converter(steemd_instance=steem).sp_to_vests(sp)`

#### 其它方法

上边的解决方法是手工指定节点nodes并且避免使用了共享节点。那么还有其它办法解决吗?当然有,还不止一个:
* 将steem-python库代码中的***`https://steemd.steemit.com`***替换为***`https://api.steemit.com`***
* 设置默认节点列表:***`steempy set nodes https://api.steemit.com`***

使用第二种方法后,再执行上边的代码
![](https://steemitimages.com/DQmSiUNzFxiCBpTFi3qnLToqbfMJdew1Xqff5gnQ7cAmFXN/image.png)
一切正常。

# 总结

***steem RPC节点更新*** 以及 ***steem-python 内部使用旧的RPC节点***导致了我们以前可用的程序出现了问题。

本文详细分析了Steem类实例创建过程中指定节点的问题,以及共享节点存在的问题,并从多个方向给出了如何解决这个问题。

看来,升级无小事啊,原本以为不过是改个节点而已,谁知道会出这么些问题呢。

>**我正在撰写本文时,CN区一位网友向我反应他使用steem-python实现的收取收益代码出现了问题,因为他这个问题和我文中描述的问题基本一致,所以就让他等我发文后看我文章就好了。偷个懒好爽😀**
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 92 others
properties (23)
authoroflyhigh
permlinksteem-python-rpc
categorysteemdev
json_metadata{"tags":["steemdev","steem-python","python","cn-programming","cn"],"image":["https://steemitimages.com/DQmNm5AScSeG8kvjXeNYYiktR3CVMXoAxJ8ioxdNuS9E6As/image.png","https://steemitimages.com/DQmZxomoxzSLgfAqnNyN2KUVz8RgFhPggZAi7Uw3r5cJhQe/image.png","https://steemitimages.com/DQmeVQHz6hzJxmWeJWT2KxeQVYY8UpTqm2zekV27vRSy5KA/image.png","https://steemitimages.com/DQmSiUNzFxiCBpTFi3qnLToqbfMJdew1Xqff5gnQ7cAmFXN/image.png"],"links":["https://pixabay.com","https://steemit.com/steemitdev/@oflyhigh/steemd-steemit-com-1-6-api-steemit-com"],"app":"steemit/0.1","format":"markdown"}
created2018-01-07 10:37:51
last_update2018-01-07 10:37:51
depth0
children26
last_payout2018-01-14 10:37:51
cashout_time1969-12-31 23:59:59
total_payout_value184.879 HBD
curator_payout_value31.537 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,477
author_reputation6,273,582,286,730,991
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,731,555
net_rshares21,550,650,462,625
author_curate_reward""
vote details (156)
@aa9 ·
Teach me chinese language
👍  ,
properties (23)
authoraa9
permlinkre-oflyhigh-steem-python-rpc-20180107t104126657z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 10:41:33
last_update2018-01-07 10:41:33
depth1
children0
last_payout2018-01-14 10:41:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation465,702,070,826
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,732,115
net_rshares816,390,080
author_curate_reward""
vote details (2)
@afridi10 ·
Please also write in English, that who cannot understand Chinese language who also understand it......
👍  ,
properties (23)
authorafridi10
permlinkre-oflyhigh-steem-python-rpc-20180107t104357913z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 10:44:03
last_update2018-01-07 10:44:03
depth1
children0
last_payout2018-01-14 10:44:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation17,984,054,832
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,732,513
net_rshares484,852,141
author_curate_reward""
vote details (2)
@alanzheng ·
Steemjs的代码也有类似的问题
properties (22)
authoralanzheng
permlinkre-oflyhigh-steem-python-rpc-20180107t121956074z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 12:19:57
last_update2018-01-07 12:19:57
depth1
children2
last_payout2018-01-14 12:19:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation2,727,533,211,976
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,748,594
net_rshares0
@oflyhigh ·
js不会用,哈哈😳
properties (22)
authoroflyhigh
permlinkre-alanzheng-re-oflyhigh-steem-python-rpc-20180107t124515896z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 12:45:18
last_update2018-01-07 12:45:18
depth2
children1
last_payout2018-01-14 12:45:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation6,273,582,286,730,991
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,753,099
net_rshares0
@alanzheng ·
哈哈,太谦虚了
properties (22)
authoralanzheng
permlinkre-oflyhigh-re-alanzheng-re-oflyhigh-steem-python-rpc-20180108t001040425z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-08 00:10:39
last_update2018-01-08 00:10:39
depth3
children0
last_payout2018-01-15 00:10:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation2,727,533,211,976
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,872,951
net_rshares0
@cifer ·
$0.13
原来如此, 多谢提示~
👍  
properties (23)
authorcifer
permlinkre-oflyhigh-steem-python-rpc-20180108t053313574z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-08 05:33:15
last_update2018-01-08 05:33:15
depth1
children0
last_payout2018-01-15 05:33:15
cashout_time1969-12-31 23:59:59
total_payout_value0.126 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation8,256,283,569,876
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,923,422
net_rshares12,157,754,863
author_curate_reward""
vote details (1)
@januschoi ·
用piston的要怎么解决这个问题?加了node的指定,还是会跑到steemd.steemit.com
properties (22)
authorjanuschoi
permlinkre-oflyhigh-steem-python-rpc-20180109t074307004z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-09 07:43:03
last_update2018-01-09 07:43:03
depth1
children0
last_payout2018-01-16 07:43:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation125,087,710,238
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,192,713
net_rshares0
@jiangchen ·
= =我感觉我那个自动收收益的好像挂了好久了。
properties (22)
authorjiangchen
permlinkre-oflyhigh-steem-python-rpc-20180107t114636725z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 11:46:39
last_update2018-01-07 11:46:39
depth1
children2
last_payout2018-01-14 11:46:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation65,999,946,618,359
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,742,935
net_rshares0
@oflyhigh ·
打它!
👍  
properties (23)
authoroflyhigh
permlinkre-jiangchen-re-oflyhigh-steem-python-rpc-20180107t124447391z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 12:44:51
last_update2018-01-07 12:44:51
depth2
children1
last_payout2018-01-14 12:44:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation6,273,582,286,730,991
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,753,005
net_rshares1,977,028,638
author_curate_reward""
vote details (1)
@jiangchen ·
不如直接rm -rf / ?
properties (22)
authorjiangchen
permlinkre-oflyhigh-re-jiangchen-re-oflyhigh-steem-python-rpc-20180107t130831663z
categorysteemdev
json_metadata{"tags":["steemdev"],"community":"busy","app":"busy/2.2.0"}
created2018-01-07 13:08:33
last_update2018-01-07 13:08:33
depth3
children0
last_payout2018-01-14 13:08:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation65,999,946,618,359
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,757,269
net_rshares0
@justyy ·
$1.01
感谢O 哥! life saver!
👍  , ,
properties (23)
authorjustyy
permlinkre-oflyhigh-steem-python-rpc-20180107t104610086z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 10:46:09
last_update2018-01-07 10:46:09
depth1
children4
last_payout2018-01-14 10:46:09
cashout_time1969-12-31 23:59:59
total_payout_value0.986 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation280,616,224,641,976
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,732,852
net_rshares101,261,674,713
author_curate_reward""
vote details (3)
@tvb ·
原来这个有困难的同学是偶像你哈哈。
properties (22)
authortvb
permlinkre-justyy-re-oflyhigh-steem-python-rpc-20180107t110250925z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 11:02:51
last_update2018-01-07 11:02:51
depth2
children3
last_payout2018-01-14 11:02:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation35,098,102,223,749
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,735,530
net_rshares0
@justyy ·
是的…… O哥不好意思点我名。
再次感谢O 哥。。
properties (22)
authorjustyy
permlinkre-tvb-re-justyy-re-oflyhigh-steem-python-rpc-20180107t112245473z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 11:22:45
last_update2018-01-07 11:22:45
depth3
children2
last_payout2018-01-14 11:22:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation280,616,224,641,976
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,738,883
net_rshares0
@lacanone ·
You are really a genius, I've benefited from your previous publications I want more Python lessons, thanks ...
properties (22)
authorlacanone
permlinkre-oflyhigh-steem-python-rpc-20180107t104403488z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 10:44:03
last_update2018-01-07 10:44:03
depth1
children0
last_payout2018-01-14 10:44:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation23,765,879,126
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,732,515
net_rshares0
@mindfreezer ·
if i were a chinese.  I would be able to read and understand your post.  btw Thanks for your effort @oflyhigh
properties (22)
authormindfreezer
permlinkre-oflyhigh-steem-python-rpc-20180107t112853430z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["oflyhigh"],"app":"steemit/0.1"}
created2018-01-07 11:29:03
last_update2018-01-07 11:29:03
depth1
children0
last_payout2018-01-14 11:29:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation133,870,438,990
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,739,889
net_rshares0
@moyse ·
solution
👍  
properties (23)
authormoyse
permlinkre-oflyhigh-steem-python-rpc-20180107t111029280z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 11:10:30
last_update2018-01-07 11:10:30
depth1
children0
last_payout2018-01-14 11:10:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation5,860,270,290,556
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,736,836
net_rshares423,843,052
author_curate_reward""
vote details (1)
@muyuxuan ·
谢谢! 新人,还没遇到过,多谢提前指导!
properties (22)
authormuyuxuan
permlinkre-oflyhigh-steem-python-rpc-20180107t144455547z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 14:44:57
last_update2018-01-07 14:44:57
depth1
children0
last_payout2018-01-14 14:44:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation9,794,700,365
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,776,171
net_rshares0
@skenan ·
设置默认节点列表的方法挺好用,而且可以一下子加好几个node
properties (22)
authorskenan
permlinkre-oflyhigh-steem-python-rpc-20180107t204842736z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 20:48:42
last_update2018-01-07 20:48:42
depth1
children3
last_payout2018-01-14 20:48:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation8,219,510,746,132
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,840,993
net_rshares0
@oflyhigh ·
国外那些个人提供的节点,要么不好用,要么可能距离远的缘故特慢
还是steemit官方的好
properties (22)
authoroflyhigh
permlinkre-skenan-re-oflyhigh-steem-python-rpc-20180107t224246819z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 22:42:48
last_update2018-01-07 22:42:48
depth2
children2
last_payout2018-01-14 22:42:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation6,273,582,286,730,991
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,859,378
net_rshares0
@skenan ·
$0.92
http://www.steemreports.com/steem-rpc-monitor/ 这里可以看到一些latency,现在rpc.buildsteem.io这个最好
👍  
properties (23)
authorskenan
permlinkre-oflyhigh-re-skenan-re-oflyhigh-steem-python-rpc-20180108t001738248z
categorysteemdev
json_metadata{"tags":["steemdev"],"community":"busy","app":"busy/2.2.0"}
created2018-01-08 00:17:39
last_update2018-01-08 00:17:39
depth3
children1
last_payout2018-01-15 00:17:39
cashout_time1969-12-31 23:59:59
total_payout_value0.916 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation8,219,510,746,132
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,874,038
net_rshares116,895,402,664
author_curate_reward""
vote details (1)
@usmanzeb ·
为什么要下地狱的,它提供了一个服务器执行失败的消息,一个文件在我 C:\ 驱动器吗? 它” FREAKING 不在一个服务器! 这是一个网络甚至不能在这里! 该文件将被完全包含在单个硬盘驱动器,首要的是,在这种机器! 术语服务器甚至不应拿出任何错误的与此有关的文件。
properties (22)
authorusmanzeb
permlinkre-oflyhigh-steem-python-rpc-20180107t104203374z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 10:42:36
last_update2018-01-07 10:42:36
depth1
children0
last_payout2018-01-14 10:42:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation-37,759,519,799
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,732,297
net_rshares0
@wangyc ·
说实话对这没研究,就来凑个热闹。
properties (22)
authorwangyc
permlinkre-oflyhigh-steem-python-rpc-20180107t131616674z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-07 13:16:15
last_update2018-01-07 13:16:15
depth1
children0
last_payout2018-01-14 13:16:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation124,066,709,921
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,758,741
net_rshares0
@yellowcelest ·
我的是今晚刚刚注册的,也是提示超出带宽,让我等待批准或联系,然后我又重新点了一下注册邮箱里面的那个链接,就直接提示下个页面了,可以输入密码登录了.
👍  
properties (23)
authoryellowcelest
permlinkre-oflyhigh-steem-python-rpc-20180108t153205685z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-08 15:29:30
last_update2018-01-08 15:29:30
depth1
children0
last_payout2018-01-15 15:29:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation27,462,137
root_title"重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,027,520
net_rshares614,500,000
author_curate_reward""
vote details (1)