在之前的帖子中和大家一起学习了[如何使用Python获取指定区块在block_log中的位置信息](https://hive.blog/hive-105017/@oflyhigh/python-blocklog),今天我们来实际测试一下利用上述信息修复被损坏的block_log,并测试不同情况的replay(重播)。  (图源 :[pixabay](https://pixabay.com/vectors/website-development-setting-tool-6700615/)) 为了进行测试,我们首先关闭hived,并复制`block_log`以及`block_log.index`到新用户目录下,这样就算不小心搞坏,也不会影响我hived的正常运行。 尽管是在本地操作,但是因为`block_log`已经达到了500G以上,所以耗费了大概一个小时左右的时间,还真的需要点耐心呢。 复制后,两个文件长度信息如下: >`-rw-rw-r-- 1 test1234 test1234 536100860926 Feb 5 14:55 block_log` `-rw-rw-r-- 1 test1234 test1234 492444336 Feb 5 14:55 block_log.index` # 测试直接启动hived 我们尝试直接启动hived,发现hived是无法正常启动的,因为缺少`shared_memory.bin`数据。 > 其中最有价值的提示信息: >`check_data_consisten ] Replaying is not finished. Synchronization is not allowed. { "block_log-head": 61555542, "state-head": 0 }` 我们也可以根据`block_log.index`长度计算出当前区块号: > # 测试replay (重播) 因为`block_log`以及`block_log.index`当前都是完好的,并且区块高度相同。当前情况下我们是可以通过`--replay-blockchain`来对区块链进行replay操作,重建***state database***。 指令如下: >`hived_v1.25.0 --replay-blockchain` 执行后正常开始replay: > # 测试block_log损毁情况 首先人为模拟破坏block_log,删除其尾部的六个字节: >`truncate -s 536100860920 block_log` 然后重新执行repaly操作: >`hived_v1.25.0 --replay-blockchain` 我们会发现这个replay操作是无法进行的 > 这和我们日常遇到的大多数block_log损毁一样,当尾部被破坏时(应该是写入没写完整时hived被强制停掉等情况所导致),无法进行replay操作。 # 测试区块高度不一致的情况 ### 测试block_pos < index_pos 通过之前文章中提供的脚本,我们计算出最后一块的位置:536100838940,然后将其截掉: >`truncate -s 536100838940 block_log` (通过最后一块的位置,以及block_log未损坏时的长度,可以计算出最后一块在block_log中的存储长度)。 经过这个操作之后,我们可以认为`block_log`以及`block_log.index`都是完好的,只是`block_log.index`比`block_log`块高高了一块。 我们再来试试replay,(***在进行操作之前,首先备份一下block_log.index***)。 >`hived_v1.25.0 --replay-blockchain` 以下为执行结果,注意其中的`block_pos < index_pos`,然后从头开始漫长的`Reconstructing Block Log Index using memory-mapped IO`: > ### 测试block_pos > index_pos 将block_log.index截掉16个字节后再次尝试replay: >`hived_v1.25.0 --replay-blockchain` 以下为测试结果,注意其中的`Index is incomplete`,又是漫长的从头开始`Reconstructing Block Log Index using memory-mapped IO`: > ### 测试没有`block_log.index` 彻底删除block_log.index后,再次尝试replay: >`hived_v1.25.0 --replay-blockchain` 以下为测试结果,注意其中的`Index is empty`,之后又是漫长的`Reconstructing Block Log Index using memory-mapped IO`:  也就是说区块高度不一致,或者`block_log.index`不存在的情况都要进行`Reconstructing Block Log Index using memory-mapped IO`。 如果`block_log.index`不存在彻底不存在,其实重建index是没问题的,而高度不一致的情况重建index会白白浪费大量的时间。所以高度不一致的情况,应该首先考虑修复,然后再replay。 # 修复&replay 修复`block_log`以及`block_log.index`其实很简单,就是通过`block_log.index`最后一块,计算出最后一块在`block_log`中的位置,并且截短`block_log`以及`block_log.index`对应内容。 如果一块不行,就多截短几块,对于`block_log.index`而言,截掉对应块数*8个字节就好。 修复`block_log`并使`block_log.index`与其块高一致,就可以尝试replay了: >`hived_v1.25.0 --replay-blockchain` 这时我们会看到replay正常进行,没有进行重建index,无疑节省了大量时间: > # 结论 我们可以通过计算`block_log.index`中后边某块在`block_log`中的位置并配合`truncate `工具来修复`block_log`;同时可以使用`truncate `移除指定块数*8字节来使`block_log`与`block_log.index`块高相同。 这样就实现了彻底修复的目的,而不必因为块高不同导致强行重建index(`Reconstructing Block Log Index using memory-mapped IO`),进而节省了大量的时间。  (图源 :[pixabay](https://pixabay.com/illustrations/lightbulb-bulb-light-idea-energy-1875247/)) 好了,今天就学习到这里了。 # 相关链接 * [每天进步一点点:使用Python获取指定区块在block_log中的位置信息](https://hive.blog/hive-105017/@oflyhigh/python-blocklog)
author | oflyhigh |
---|---|
permlink | blocklog-hive-replay |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","hive","dev","witness","blockchain"],"image":["https://images.hive.blog/DQmREjMm9FVCwaPRAZjXQMw2WwjeHu9xSG2LUuHvEqJ66W6/image.png","https://images.hive.blog/DQmUQQhwmD4vYCmC7BWni33sSoqHZ7zidvPLqT4zZY4c4t7/image.png","https://images.hive.blog/DQmcHhtnvrt55eZyAsrTykSiQxC8YCyrpwW1ELJKdCgxBcU/image.png","https://images.hive.blog/DQmfFGdxFo3CL7CHpHwaGPew2uaFhgC4xySEKsGFUd3jMVA/image.png","https://images.hive.blog/DQmXkdSCHnXVUoo3UtHZxm2yD4kmtrSFztV9Mu9nDpxvv67/image.png","https://images.hive.blog/DQmPyPy9JyiovZaSYs1oHpbXCmKuPXbVkUDWVXCr56xiFFc/image.png","https://images.hive.blog/DQmSEdDDz5PXJ5bNeE1sXahuztzrMfrVFsU7wcmeLV2cAvu/image.png","https://images.hive.blog/DQmSMe7xa7vQk9C8oaofNJ3tqMhytDWkdYhjC34fRqYsXr2/image.png","https://images.hive.blog/DQmdmtyn5qg9nWR4tRo22FSuvz9zhKXQM6P2D6eZGxk7XRC/image.png","https://images.hive.blog/DQmbcxzunFVtBndBApPwRv25TrjrJ3Ab34P24iHw22yb4fV/image.png"],"links":["https://hive.blog/hive-105017/@oflyhigh/python-blocklog"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2022-02-06 03:48:48 |
last_update | 2022-02-06 03:48:48 |
depth | 0 |
children | 7 |
last_payout | 2022-02-13 03:48:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 84.194 HBD |
curator_payout_value | 84.048 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,120 |
author_reputation | 6,249,860,958,104,193 |
root_title | 每天进步一点点:实测block_log修复以及hive区块链Replay |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 110,186,346 |
net_rshares | 118,526,727,412,359 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 26,118,710,247,444 | 100% | ||
adm | 0 | 25,727,422,639,395 | 100% | ||
gerber | 0 | 30,275,324,176 | 9% | ||
good-karma | 0 | 28,250,937,673 | 3% | ||
daan | 0 | 51,553,733,467 | 8% | ||
ezzy | 0 | 554,207,230 | 9% | ||
deanliu | 0 | 3,151,738,132,350 | 100% | ||
exyle | 0 | 81,869,889,270 | 9% | ||
joythewanderer | 0 | 28,614,314,675 | 100% | ||
ace108 | 0 | 1,099,229,819,558 | 25% | ||
logic | 0 | 178,050,406,255 | 100% | ||
magicmonk | 0 | 2,465,404,350,337 | 100% | ||
laoyao | 0 | 56,468,863,807 | 100% | ||
midnightoil | 0 | 198,610,263,358 | 100% | ||
xiaohui | 0 | 17,800,692,403 | 100% | ||
joele | 0 | 400,645,969,218 | 100% | ||
oflyhigh | 0 | 4,035,574,157,679 | 100% | ||
rivalhw | 0 | 2,352,335,104,050 | 100% | ||
nextgen622 | 0 | 677,966,320,018 | 100% | ||
helene | 0 | 1,139,526,134,564 | 100% | ||
ffcrossculture | 0 | 84,780,780,051 | 100% | ||
ethansteem | 0 | 65,794,743,828 | 100% | ||
sweetsssj | 0 | 11,200,444,780,622 | 33% | ||
penguinpablo | 0 | 287,008,718,818 | 12% | ||
petrvl | 0 | 137,452,475,923 | 15% | ||
ebargains | 0 | 691,515,000 | 2.25% | ||
cnfund | 0 | 94,320,535,526 | 50% | ||
funnyman | 0 | 1,079,683,341 | 4.8% | ||
steemcleaners | 0 | 1,637,490,958,378 | 60% | ||
btshuang | 0 | 746,582,783 | 50% | ||
planosdeunacasa | 0 | 855,705,437 | 9% | ||
redes | 0 | 2,908,182,798,955 | 42% | ||
dapeng | 0 | 151,943,960,880 | 100% | ||
esteemapp | 0 | 7,021,562,931 | 3% | ||
bxt | 0 | 198,703,228,238 | 100% | ||
lingfei | 0 | 23,163,863,204 | 100% | ||
privex | 0 | 19,624,105,667 | 18% | ||
justinashby | 0 | 8,205,425,727 | 100% | ||
trafalgar | 0 | 19,918,373,142,810 | 48% | ||
itinerantph | 0 | 514,463,166 | 24% | ||
raindrop | 0 | 324,219,797,390 | 48% | ||
teachblogger | 0 | 2,117,427,082 | 50% | ||
passion-fruit | 0 | 7,978,962,903 | 100% | ||
htliao | 0 | 2,970,385,320 | 20% | ||
fortune-master | 0 | 7,563,770,330 | 100% | ||
dune69 | 0 | 51,375,045,725 | 7.2% | ||
iansart | 0 | 33,980,260,135 | 9% | ||
curly-q | 0 | 2,313,878,978 | 100% | ||
forykw | 0 | 69,305,946,031 | 4.5% | ||
uruiamme | 0 | 5,053,535,081 | 50% | ||
nanosesame | 0 | 424,194,058,205 | 80% | ||
drwom | 0 | 553,233,958 | 1.5% | ||
exec | 0 | 304,035,362,078 | 100% | ||
belahejna | 0 | 23,826,274,587 | 15% | ||
alphacore | 0 | 40,246,911,464 | 20.25% | ||
sam99 | 0 | 13,295,350,361 | 17% | ||
joeyarnoldvn | 0 | 612,399,499 | 1.76% | ||
offgridlife | 0 | 505,203,415,939 | 100% | ||
susanli3769 | 0 | 602,119,064,945 | 100% | ||
otom | 0 | 5,069,701,274 | 20% | ||
goldkey | 0 | 403,565,426,957 | 51% | ||
mrpointp | 0 | 316,261,537,969 | 100% | ||
travelgirl | 0 | 125,632,295,141 | 100% | ||
mygod | 0 | 743,087,422 | 50% | ||
shitsignals | 0 | 537,850,293 | 9% | ||
catwomanteresa | 0 | 363,849,873,980 | 100% | ||
dine77 | 0 | 144,109,164,755 | 65% | ||
isabelpena | 0 | 13,763,529,156 | 100% | ||
dineroconopcion | 0 | 866,346,043 | 9% | ||
zonabitcoin | 0 | 816,856,091 | 9% | ||
oldman28 | 0 | 79,222,048,893 | 48% | ||
liangfengyouren | 0 | 3,438,687,371 | 50% | ||
idx | 0 | 23,419,675,501 | 100% | ||
aafeng | 0 | 692,510,660,990 | 100% | ||
cn-reader | 0 | 17,065,310,825 | 50% | ||
tvb | 0 | 3,203,500,751 | 30% | ||
felander | 0 | 49,929,626,945 | 9% | ||
floatinglin | 0 | 4,870,669,764 | 100% | ||
mrspointm | 0 | 288,606,571,368 | 100% | ||
kimzwarch | 0 | 14,586,597,297 | 4% | ||
bboyady | 0 | 1,446,860,586 | 19.16% | ||
cconn | 0 | 812,561,128 | 9% | ||
yogacoach | 0 | 9,354,704,725 | 9% | ||
joshman | 0 | 272,814,427,363 | 25% | ||
chenlocus | 0 | 37,589,993,282 | 100% | ||
davidke20 | 0 | 41,237,334,123 | 38.32% | ||
nityabusiness100 | 0 | 526,281,297 | 100% | ||
minloulou | 0 | 4,420,362,457 | 70% | ||
victory622 | 0 | 201,529,837,056 | 100% | ||
esteem.app | 0 | 872,841,775 | 3% | ||
investegg | 0 | 23,082,848,713 | 0.7% | ||
namchau | 0 | 3,762,601,213 | 70% | ||
japanguide | 0 | 666,502,651 | 100% | ||
jychbetter | 0 | 339,850,581,366 | 100% | ||
winniex | 0 | 265,568,314,068 | 100% | ||
noble-noah | 0 | 11,745,964,358 | 100% | ||
caladan | 0 | 51,857,748,046 | 7.65% | ||
halleyleow | 0 | 5,076,634,467 | 80% | ||
awesome-gadgets | 0 | 2,540,799,313 | 100% | ||
etherpunk | 0 | 886,729,421 | 50% | ||
hendersonp | 0 | 1,181,571,972 | 9% | ||
traf | 0 | 1,754,624,989,315 | 48% | ||
ubikalo | 0 | 535,275,852 | 9% | ||
ioioioioi | 0 | 1,185,125,181 | 100% | ||
itchyfeetdonica | 0 | 518,375,075,754 | 100% | ||
weisheng167388 | 0 | 1,768,498,197 | 100% | ||
mamaloves | 0 | 4,573,882,003 | 50% | ||
cryptonized | 0 | 17,627,771,220 | 12% | ||
soufianechakrouf | 0 | 16,053,447,238 | 100% | ||
maiyude | 0 | 2,062,858,317 | 50% | ||
suhunter | 0 | 961,902,227 | 50% | ||
belemo | 0 | 87,354,192,684 | 100% | ||
mermaidvampire | 0 | 1,539,574,352 | 100% | ||
seikatsumkt | 0 | 4,985,481,740 | 75% | ||
abandi | 0 | 969,307,437 | 100% | ||
gustavoadolfodca | 0 | 936,396,323 | 40% | ||
best-strategy | 0 | 14,937,025,488 | 100% | ||
shmoogleosukami | 0 | 17,557,137,158 | 10% | ||
vamos-amigo | 0 | 4,048,706,547 | 100% | ||
unconditionalove | 0 | 1,050,120,067 | 4.5% | ||
atma-yoga | 0 | 521,546,361 | 50% | ||
yjcps | 0 | 5,088,225,911 | 100% | ||
iipoh06 | 0 | 507,846,728 | 100% | ||
pkocjan | 0 | 8,053,300,489 | 7.2% | ||
fsegredo1 | 0 | 524,823,785 | 9% | ||
ethanlee | 0 | 5,746,227,528 | 100% | ||
reazuliqbal | 0 | 51,748,683,811 | 9% | ||
kymio | 0 | 517,505,378 | 3.75% | ||
fredo77200 | 0 | 3,665,154,696 | 100% | ||
inmylife | 0 | 1,303,021,393 | 100% | ||
bestboom | 0 | 2,562,955,313 | 9% | ||
onepercentbetter | 0 | 15,506,168,971 | 12% | ||
mahyulmaulana | 0 | 2,185,045,480 | 100% | ||
lordbutterfly | 0 | 363,033,776,335 | 100% | ||
themightyvolcano | 0 | 3,500,690,485 | 9% | ||
wwstreet | 0 | 16,953,487,435 | 100% | ||
meanbees | 0 | 2,550,039,313 | 0.9% | ||
masterfx | 0 | 6,406,634,626 | 100% | ||
steem.services | 0 | 5,442,630,578 | 2.25% | ||
pladozero | 0 | 31,138,349,751 | 10% | ||
nateaguila | 0 | 279,952,598,229 | 8% | ||
hmayak | 0 | 32,050,057,793 | 100% | ||
gmlgang | 0 | 572,771,344 | 100% | ||
archisteem | 0 | 1,257,515,407 | 7.5% | ||
merlion | 0 | 602,639,571 | 12% | ||
qam2112 | 0 | 516,523,013 | 100% | ||
swisswitness | 0 | 975,235,434 | 9% | ||
sunny-rain | 0 | 1,042,418,468 | 50% | ||
nazomimatute1998 | 0 | 553,201,840 | 100% | ||
rufruf | 0 | 1,025,406,055 | 100% | ||
yestermorrow | 0 | 12,273,359,214 | 31% | ||
elmauza | 0 | 681,618,738 | 100% | ||
blues-wclouds | 0 | 1,617,964,721 | 100% | ||
kingwriting | 0 | 9,829,423,773 | 50% | ||
julian2013 | 0 | 148,933,026,627 | 100% | ||
dlike | 0 | 54,749,539,464 | 9% | ||
voxmortis | 0 | 37,372,807,837 | 20% | ||
bitalk-cc | 0 | 197,112,557,512 | 50% | ||
steemaction | 0 | 4,154,319,113 | 100% | ||
engrave | 0 | 164,760,033,071 | 7.2% | ||
bobby.madagascar | 0 | 2,687,261,577 | 9% | ||
pet.society | 0 | 14,217,980,915 | 6% | ||
minminlou | 0 | 857,795,577 | 56% | ||
annepink | 0 | 371,030,916,986 | 100% | ||
malricinferno | 0 | 780,176,472 | 100% | ||
zintarmortalis | 0 | 887,696,789 | 100% | ||
natur-pur | 0 | 1,100,317,826 | 100% | ||
happyfamily | 0 | 1,582,185,256 | 50% | ||
steemitcuration | 0 | 1,811,270,883 | 100% | ||
jamzmie | 0 | 519,538,112 | 15% | ||
merlin7 | 0 | 17,827,335,524 | 7.2% | ||
sasaadrian | 0 | 12,562,223,939 | 20% | ||
dallas27 | 0 | 1,022,281,960 | 50% | ||
rakk3187 | 0 | 9,750,299,808 | 100% | ||
followjohngalt | 0 | 2,729,592,363 | 8.1% | ||
maajaanaa | 0 | 763,449,682 | 15% | ||
starrouge | 0 | 1,048,492,524 | 50% | ||
unit101 | 0 | 6,634,601,210 | 100% | ||
littlegurl747 | 0 | 10,607,410,274 | 100% | ||
rasalom | 0 | 16,624,368,923 | 100% | ||
steemfriends | 0 | 2,597,181,372 | 100% | ||
zerofive | 0 | 1,103,262,126 | 50% | ||
jacuzzi | 0 | 3,685,019,984 | 1.2% | ||
blind-spot | 0 | 12,656,739,161 | 50% | ||
steemegg | 0 | 5,434,783,402 | 19.16% | ||
determine | 0 | 518,921,051 | 9% | ||
cnstm | 0 | 157,064,515,066 | 100% | ||
likuang007 | 0 | 665,860,519 | 100% | ||
lianjingmedia | 0 | 1,004,005,509 | 100% | ||
mia-cc | 0 | 4,938,410,341 | 38.32% | ||
hungrybear | 0 | 519,972,783 | 12% | ||
yanhan | 0 | 138,654,858,933 | 100% | ||
hungryharish | 0 | 22,989,386,933 | 100% | ||
apix | 0 | 19,171,232,547 | 100% | ||
lovelemon | 0 | 8,601,325,066 | 20% | ||
hungryanu | 0 | 3,709,997,136 | 50% | ||
mfblack | 0 | 2,006,214,695 | 8.55% | ||
photographercr | 0 | 1,112,954,611 | 0.6% | ||
steem-fund | 0 | 6,372,693,685 | 100% | ||
rj-photo | 0 | 1,530,568,340 | 100% | ||
scarletreaper | 0 | 20,093,664,858 | 50% | ||
izhmash | 0 | 769,970,054 | 100% | ||
sevensixtwo | 0 | 660,985,167 | 100% | ||
bastogne | 0 | 690,167,211 | 100% | ||
thirdarmy | 0 | 679,287,210 | 100% | ||
dailyke20 | 0 | 133,096,636,504 | 100% | ||
firefuture | 0 | 619,054,986 | 4.5% | ||
steemindian | 0 | 4,238,789,986 | 100% | ||
cheer-up | 0 | 1,384,279,557 | 7.2% | ||
jimhawkins | 0 | 526,354,033 | 64% | ||
milu-the-dog | 0 | 2,323,676,737 | 9% | ||
triplea.bot | 0 | 2,154,263,242 | 9% | ||
tiffin | 0 | 2,721,817,427 | 7.2% | ||
steem.leo | 0 | 12,299,412,900 | 9% | ||
voodooranger | 0 | 1,274,987,215 | 100% | ||
online-24-7 | 0 | 1,825,033,927 | 100% | ||
hyborian-strain | 0 | 2,435,944,017 | 30% | ||
helengutier2 | 0 | 11,071,451,313 | 9% | ||
iamraincrystal | 0 | 943,914,886 | 0.75% | ||
janaveda | 0 | 99,432,345,791 | 100% | ||
bilpcoinbot | 0 | 2,057,746,115 | 50% | ||
moleah | 0 | 1,695,387,810 | 100% | ||
vickyli | 0 | 27,729,884,629 | 100% | ||
icon123456 | 0 | 38,043,268,708 | 100% | ||
lnakuma | 0 | 37,866,407,173 | 100% | ||
bpcvoter | 0 | 953,647,273 | 100% | ||
ribary | 0 | 3,143,029,735 | 4.5% | ||
coin-doubler | 0 | 2,184,591,877 | 100% | ||
kgsupport | 0 | 2,324,607,502 | 50% | ||
warmstill | 0 | 1,682,976,022 | 100% | ||
mice-k | 0 | 852,229,766 | 9% | ||
julesquirin | 0 | 7,407,914,011 | 50% | ||
dpend.active | 0 | 930,430,968 | 1.8% | ||
lovequeen | 0 | 148,150,121,580 | 100% | ||
hivewatchers | 0 | 52,645,282,126 | 55% | ||
dbuzz | 0 | 81,847,539,240 | 1.5% | ||
polish.hive | 0 | 125,729,572 | 9% | ||
dcityrewards | 0 | 317,528,061,114 | 9% | ||
sketching | 0 | 528,236,517 | 4.5% | ||
ecency | 0 | 1,088,491,889,777 | 3% | ||
iameden | 0 | 4,443,383,375 | 100% | ||
forkyishere | 0 | 546,738,163 | 4.5% | ||
jywahaha | 0 | 7,927,154,726 | 100% | ||
hivecur | 0 | 149,540,040 | 9% | ||
patronpass | 0 | 561,850,481 | 9% | ||
roberto58 | 0 | 9,675,194,850 | 100% | ||
jelly13 | 0 | 296,169,020 | 4.5% | ||
olaunlimited | 0 | 35,713,937,076 | 21.6% | ||
ecency.stats | 0 | 1,095,737,633 | 3% | ||
sevenoh-fiveoh | 0 | 999,440,791 | 5% | ||
blogstats | 0 | 681,110,662 | 100% | ||
philipmak | 0 | 1,457,942,845 | 50% | ||
dcrops | 0 | 36,624,556,207 | 4.5% | ||
belemo.leo | 0 | 2,542,114,651 | 100% | ||
drricksanchez | 0 | 41,833,722,811 | 10% | ||
zwhammer | 0 | 1,019,213,881 | 50% | ||
tingjie | 0 | 15,493,286,848 | 100% | ||
lovelingling | 0 | 30,338,258,276 | 100% | ||
tina1219 | 0 | 5,018,623,609 | 100% | ||
mao317 | 0 | 3,837,151,943 | 100% | ||
sovstar | 0 | 678,614,350 | 1.5% | ||
alpha-omega | 0 | 4,316,062,498 | 100% | ||
lazy001 | 0 | 3,506,144,723 | 100% | ||
waffleuncle | 0 | 953,664,454 | 30% | ||
shoumik31 | 0 | 9,547,858,441 | 100% | ||
firstborn.pob | 0 | 767,413,141 | 50% | ||
hivefolks | 0 | 526,304,736,592 | 100% | ||
jeryco | 0 | 0 | 100% | ||
gormiot | 0 | 6,022,559,700 | 100% | ||
blue.chip | 0 | 7,350,372,335 | 90% | ||
soccertops5 | 0 | 128,836,564 | 100% | ||
hiveiq | 0 | 17,085,868,197 | 99% |
看得头晕乎乎的,除了看不懂之外就剩下看不懂了。
author | aellly |
---|---|
permlink | re-oflyhigh-202226t145359668z |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","hive","dev","witness","blockchain"],"app":"ecency/3.0.21-vision","format":"markdown+html"} |
created | 2022-02-06 06:54:00 |
last_update | 2022-02-06 06:54:00 |
depth | 1 |
children | 0 |
last_payout | 2022-02-13 06:54:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 851,653,241,975,926 |
root_title | 每天进步一点点:实测block_log修复以及hive区块链Replay |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 110,188,970 |
net_rshares | 0 |
O哥真厉害👍而且是复制不了的优势!
author | celeste413 |
---|---|
permlink | re-oflyhigh-202226t201729519z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","hive","dev","witness","blockchain"],"app":"ecency/3.0.19-mobile","format":"markdown+html"} |
created | 2022-02-06 12:17:30 |
last_update | 2022-02-06 12:17:30 |
depth | 1 |
children | 0 |
last_payout | 2022-02-13 12:17:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 430,818,290,022,190 |
root_title | 每天进步一点点:实测block_log修复以及hive区块链Replay |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 110,195,230 |
net_rshares | 0 |
Your content has been **voted** as a part of [Encouragement program](https://ecency.com/ecency/@good-karma/encouragement-program-continues-82eafcd10a299). Keep up the good work! <br><br>Use Ecency daily to boost your growth on platform! <br><br><b>Support Ecency</b><br>[Vote for new Proposal](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B197%5D&approve=true)<br>[Delegate HP and earn more](https://ecency.com/hive-125125/@ecency/daily-100-curation-rewards)
author | ecency |
---|---|
permlink | re-202226t3531673z |
category | hive-105017 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.16-welcome","format":"markdown+html"} |
created | 2022-02-06 03:53:03 |
last_update | 2022-02-06 03:53:03 |
depth | 1 |
children | 0 |
last_payout | 2022-02-13 03:53:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 478 |
author_reputation | 613,589,286,978,643 |
root_title | 每天进步一点点:实测block_log修复以及hive区块链Replay |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 110,186,424 |
net_rshares | 0 |
O哥优秀,也许有个好师傅不一定有个好徒弟,学习也不一定让人进步,拜读完,我似乎有了如此感悟🤪。哈哈
author | lovelingling |
---|---|
permlink | re-oflyhigh-202226t12365375z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","hive","dev","witness","blockchain"],"app":"ecency/3.0.19-mobile","format":"markdown+html"} |
created | 2022-02-06 04:36:51 |
last_update | 2022-02-06 04:36:51 |
depth | 1 |
children | 2 |
last_payout | 2022-02-13 04:36:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 715,371,310,489,223 |
root_title | 每天进步一点点:实测block_log修复以及hive区块链Replay |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 110,187,076 |
net_rshares | 0 |
爱胸能看懂这些开源😅
author | aellly |
---|---|
permlink | re-lovelingling-202226t145456532z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","hive","dev","witness","blockchain"],"app":"ecency/3.0.21-vision","format":"markdown+html"} |
created | 2022-02-06 06:54:57 |
last_update | 2022-02-06 06:54:57 |
depth | 2 |
children | 1 |
last_payout | 2022-02-13 06:54:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 851,653,241,975,926 |
root_title | 每天进步一点点:实测block_log修复以及hive区块链Replay |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 110,188,985 |
net_rshares | 0 |
脑回路不行
author | lovelingling |
---|---|
permlink | re-aellly-202226t165927236z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","hive","dev","witness","blockchain"],"app":"ecency/3.0.19-mobile","format":"markdown+html"} |
created | 2022-02-06 08:59:27 |
last_update | 2022-02-06 08:59:27 |
depth | 3 |
children | 0 |
last_payout | 2022-02-13 08:59:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 715,371,310,489,223 |
root_title | 每天进步一点点:实测block_log修复以及hive区块链Replay |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 110,190,895 |
net_rshares | 0 |
分好几段,看完了。好费脑,未来世界不懂代码就如不会开车、不会“文字/语言”
author | wwstreet |
---|---|
permlink | re-oflyhigh-202226t20362792z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","hive","dev","witness","blockchain"],"app":"ecency/3.0.25-mobile","format":"markdown+html"} |
created | 2022-02-06 12:36:27 |
last_update | 2022-02-06 12:36:27 |
depth | 1 |
children | 0 |
last_payout | 2022-02-13 12:36:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 6,767,709,413,374 |
root_title | 每天进步一点点:实测block_log修复以及hive区块链Replay |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 110,195,577 |
net_rshares | 0 |