#### Project Information * Repository: https://github.com/steemit/hivemind * Project Name: Hivemind * Publisher: Steemit inc. * Related issue at Github: https://github.com/steemit/hivemind/issues/191 #### Problem Hivemind backed `api.steemit.com` reports invalid/missing following data for some of the accounts. (In comparison to a full node) #### How to reproduce 1. Query the user `curbot`'s following list. (`condenser_api.get_following`) ``` curl -s --data '{"jsonrpc":"2.0", "method":"condenser_api.get_following", "params":["curbot",null,"blog",100], "id":1}' https://api.steemit.com ``` 2. Do the same query on a full node: (https://rpc.usesteem.com) ``` curl -s --data '{"jsonrpc":"2.0", "method":"condenser_api.get_following", "params":["curbot",null,"blog",100], "id":1}' https://rpc.usesteem.com ``` You can see the response is different and incomplete in `api.steemit.com.`. #### A Python script the detect discrepancies I believe this is not an exceptional case. I have seen more discrepancies like that while trying to test/benchmark the [tower's new endpoints](https://steemit.com/utopian-io/@emrebeyler/new-version-on-tower-hivemind-rest). This Python script detects discrepancies on follower lists. ``` from steem import Steem from steem.account import Account def get_diff(account): followers_on_hivemind = Account( account, steemd_instance=Steem( nodes=["https://api.steemit.com"]) ).get_followers() followers_on_full_node = Account( account, steemd_instance= Steem( nodes=["https://rpc.usesteem.com"]) ).get_followers() print( "Accounts listed on api.steemit.com but not in the rpc.usesteem.com") print(set(followers_on_hivemind).difference(set(followers_on_full_node))) print("*" * 42) print( "Accounts listed on rpc.usesteem.com but not in the api.steemit.com") print(set(followers_on_full_node).difference(set(followers_on_hivemind))) ``` *** The result for `@emrebeyler`'s followers: ``` Accounts listed on api.steemit.com but not in the rpc.usesteem.com set() ****************************************** Accounts listed on rpc.usesteem.com but not in the api.steemit.com {'hariyati.amin', 'curbot', 'kenzyobiadi', 'erhanbute'} ``` *** After some digging, I have found a rare case on a differently formatted custom json. For example, I have checked the account history of `curbot` that when he exactly followed my account, and found this transaction: [Transaction ID: aaccccb73b6dfcb4bbf95f6d2dcb76e1c87137e9](https://steemd.com/b/25992870#aaccccb73b6dfcb4bbf95f6d2dcb76e1c87137e9) Looks like `curbot` was bundling follow operations into one transaction. And steemd picked up these and registered as valid follow actions. However, hive's indexer ignores the `custom_json` op if loaded json's length is greater than 2. https://github.com/steemit/hivemind/blob/f7a467921678d928a0d94928c811442b8ab80bce/hive/indexer/custom_op.py#L55 For this case it's greater than 2 because the format is like: ``` [ ['follow', { 'follower': 'curbot', 'following': 'kevinwong', 'what': ['blog'] }], ['follow', { 'follower': 'curbot', 'following': 'nothingismagick', 'what': ['blog'] }], ['follow', { 'follower': 'curbot', 'following': 'simnrodrguez', 'what': ['blog'] }], ['follow', { 'follower': 'curbot', 'following': 'steem-ua', 'what': ['blog'] }], ['follow', { 'follower': 'curbot', 'following': 'decentraland', 'what': ['blog'] }], ['follow', { 'follower': 'curbot', 'following': 'mikepm74', 'what': ['blog'] }], ['follow', { 'follower': 'curbot', 'following': 'empath', 'what': ['blog'] }], ['follow', { 'follower': 'curbot', 'following': 'emrebeyler', 'what': ['blog'] }], ['follow', { 'follower': 'curbot', 'following': 'eroche', 'what': ['blog'] }], ['follow', { 'follower': 'curbot', 'following': 'ervinneb', 'what': ['blog'] }] ] ``` *** This explains `curbot`. Regarding my other 3 missing followers: | Follower | Following | Tx ID | Block num | Timestamp | |---------------|------------|------------------------------------------|-----------|---------------------| | erhanbute | emrebeyler | d10dcd1bdb661fc4e63f2464fa2262624db5d003 | 26710986 | 2018-10-11T09:55:21 | | kenzyobiadi | emrebeyler | 9ef235eb36aac5e466b97ad3e459b7eb9495f898 | 26492393 | 2018-10-03T19:38:45 | | hariyati.amin | emrebeyler | 383a36f7aa65724eb634ebdae141366674dc1df8 | 26450469 | 2018-10-02T08:41:33 | *** Timestamps suggest that it happened between `2018-10-02` a `2018-10-10`. These transactions don't involve anything unusual. Additionaly, I have checked `roadscape`'s followers on Steem: Got this discrepancies: ``` {'curbot', 'kamvreto', 'msutyler'} ``` *** We know the problem w/ `curbot` so I have checked the other accounts. For the `kamvreto`, they followed `roadscape` at `2016-07-25T22:35:12`. Here is the account history output: ``` { 'trx_id': '2b7595b1f3e0e0105156d518b83d7eeaa19b6070', 'block': 3514062, 'trx_in_block': 3, 'op_in_trx': 0, 'virtual_op': 0, 'timestamp': '2016-07-25T22:35:12', 'op': ['custom_json', { 'required_auths': [], 'required_posting_auths': ['kamvreto'], 'id': 'follow', 'json': '{"follower":"kamvreto","following":"roadscape","what":["posts","blog"]}' }] } ``` *** It was a **legacy** custom_json transaction. The tricky part is that transaction's `what` property includes two elements. You can see the Follow constructor expects one element: https://github.com/steemit/hivemind/blob/60dc61ee4bbde2080421a3fdf10c5b83be840e8b/hive/indexer/follow.py#L71 For this reason, Hive also ignores that. The problem is same with the other missing follower of `roadscape`: ``` { 'trx_id': 'c7694ff17ba7ba3fbe1740f05c2727ecbd98cd62', 'block': 3409232, 'trx_in_block': 1, 'op_in_trx': 0, 'virtual_op': 0, 'timestamp': '2016-07-22T06:18:27', 'op': ['custom_json', { 'required_auths': [], 'required_posting_auths': ['msutyler'], 'id': 'follow', 'json': '{"follower":"msutyler","following":"roadscape","what":["posts","blog"]}' }] } ``` *** Expanding the sample size: Discrepancies on `@utopian-io`'s followers: ``` Accounts listed on rpc.usesteem.com but not in the api.steemit.com {'qawazd', 'steemgems', 'curbot'} ``` *** | Follower | Following | Tx ID | Block num | Timestamp | |-----------|------------|------------------------------------------|-----------|---------------------| | steemgems | utopian-io | 25e9c3d8e625e634b68bd5e16e99327fd37174ae | 26722368 | 2018-10-11T19:25:27 | | qawazd | utopian-io | 8de43899a8ad84b8bd65a896e71e3e0eafda0757 | 26838941 | 2018-10-15T20:37:51 | *** Follow operations are valid. Dates are close to what we miss at @emrebeyler's account: `2018-10-11` and `2018-10-15`. #### TL;DR - We have missing follow ops on api.steemit.com's hive instance. (Generally clustered around the month `2018-10`.) - Hive ignores if the follow operation includes multiple follows. (steemd accepts it. The case with the @curbot) - Hive ignores some legacy follow operations. Because, these ops may include two elements in the `what` property. (Ex: `["posts", "blog"]`) #### My GitHub Account https://github.com/emre
author | emrebeyler | ||||||
---|---|---|---|---|---|---|---|
permlink | bug-on-hivemind-on-follows | ||||||
category | utopian-io | ||||||
json_metadata | {"community":"steempeak","app":"steemit/0.1","format":"markdown","tags":["utopian-io","bug-hunting","hivemind"],"users":["emrebeyler","curbot"],"links":["https://github.com/steemit/hivemind","https://github.com/steemit/hivemind/issues/191","https://rpc.usesteem.com","https://steemit.com/utopian-io/@emrebeyler/new-version-on-tower-hivemind-rest","https://steemd.com/b/25992870#aaccccb73b6dfcb4bbf95f6d2dcb76e1c87137e9","https://github.com/steemit/hivemind/blob/f7a467921678d928a0d94928c811442b8ab80bce/hive/indexer/custom_op.py#L55","https://github.com/steemit/hivemind/blob/60dc61ee4bbde2080421a3fdf10c5b83be840e8b/hive/indexer/follow.py#L71","https://github.com/emre"]} | ||||||
created | 2019-02-06 09:15:21 | ||||||
last_update | 2019-02-06 14:24:36 | ||||||
depth | 0 | ||||||
children | 16 | ||||||
last_payout | 2019-02-13 09:15:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 25.680 HBD | ||||||
curator_payout_value | 8.016 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 7,683 | ||||||
author_reputation | 448,535,049,068,622 | ||||||
root_title | "Bug on Hivemind’s following data" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 79,472,220 | ||||||
net_rshares | 74,543,575,175,359 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 56,326,537,536 | 5% | ||
tombstone | 0 | 3,716,023,381,840 | 14.71% | ||
mids106 | 0 | 521,035,396,764 | 51.25% | ||
field | 0 | 10,620,531,842 | 100% | ||
yury-vas | 0 | 175,557,462 | 1% | ||
inertia | 0 | 1,530,093,999,686 | 100% | ||
shortcut | 0 | 5,137,791,653 | 10% | ||
steemeat | 0 | 200,888,229 | 100% | ||
rufans | 0 | 14,833,657,912 | 100% | ||
thecyclist | 0 | 10,078,936,672 | 5% | ||
eforucom | 0 | 59,105,499,690 | 3% | ||
bukiland | 0 | 1,429,138,469 | 1% | ||
decebal2dac | 0 | 8,166,729,706 | 100% | ||
hansikhouse | 0 | 12,109,281,628 | 25% | ||
voronoi | 0 | 34,021,925,353 | 50% | ||
v4vapid | 0 | 4,622,266,185,116 | 33.5% | ||
em3di | 0 | 3,442,238,650 | 25% | ||
heymattsokol | 0 | 1,104,460,369 | 15% | ||
ejemai | 0 | 10,679,740,182 | 10% | ||
paolobeneforti | 0 | 14,828,895,066 | 15% | ||
silviabeneforti | 0 | 6,350,083,785 | 10% | ||
sudutpandang | 0 | 3,955,757,323 | 70% | ||
steven-patrick | 0 | 1,982,532,775 | 100% | ||
lordneroo | 0 | 42,653,705,528 | 100% | ||
erb | 0 | 3,407,004,489 | 10% | ||
toninux | 0 | 225,324,176 | 24.5% | ||
teachblogger | 0 | 127,607,991 | 5% | ||
kenan1989 | 0 | 653,669,015 | 50% | ||
eurogee | 0 | 773,801,153 | 5% | ||
iansart | 0 | 10,584,343,653 | 30% | ||
steemchiller | 0 | 144,181,240,022 | 100% | ||
cryptastic | 0 | 2,743,915,611 | 10% | ||
luvabi | 0 | 3,688,471,557 | 12.5% | ||
world-travel-pro | 0 | 1,196,033,554 | 0.5% | ||
bitrocker2020 | 0 | 35,123,081,381 | 10% | ||
jakipatryk | 0 | 29,904,828,117 | 100% | ||
jga | 0 | 2,251,354,735 | 18.39% | ||
leesongyi | 0 | 12,236,793,279 | 5% | ||
khairulmuammar | 0 | 14,092,142,754 | 50% | ||
mercadosaway | 0 | 1,470,991,695 | 100% | ||
asbear | 0 | 140,098,440,427 | 25% | ||
ruel.cedeno | 0 | 4,517,671,728 | 100% | ||
kemal13 | 0 | 7,726,902,764 | 30% | ||
bearone | 0 | 5,528,750,972 | 5% | ||
reddragonfly | 0 | 156,835,702 | 20% | ||
pennsif | 0 | 34,107,560,736 | 10% | ||
pibara | 0 | 34,702,438,137 | 100% | ||
lastozgur | 0 | 4,961,945,079 | 100% | ||
howtostartablog | 0 | 18,118,840,686 | 40% | ||
faluthi01 | 0 | 218,447,582 | 25% | ||
tensor | 0 | 34,453,656,498 | 100% | ||
affiedalfayed | 0 | 559,732,054 | 5% | ||
carrotcake | 0 | 482,284,460 | 5% | ||
klynic | 0 | 201,529,569 | 10% | ||
geekgirl | 0 | 323,674,728,754 | 100% | ||
firatozbek | 0 | 4,483,110,117 | 100% | ||
coloringiship | 0 | 4,605,624,429 | 12.5% | ||
sndbox | 0 | 3,187,161,216,409 | 50% | ||
fandy | 0 | 159,422,614 | 36.79% | ||
jacekw | 0 | 9,352,710,754 | 50% | ||
codingdefined | 0 | 24,645,316,060 | 20% | ||
themarkymark | 0 | 556,189,280,235 | 43% | ||
mintvilla | 0 | 15,329,813,643 | 30% | ||
kofspades | 0 | 87,664,351 | 10% | ||
leotrap | 0 | 1,851,612,535 | 2.5% | ||
somethingburger | 0 | 4,517,977,050 | 50% | ||
tanyaschutte | 0 | 445,069,439 | 7.5% | ||
steemitph | 0 | 12,611,277,145 | 25% | ||
leir | 0 | 2,046,860,677 | 50% | ||
dayoung | 0 | 12,943,780,266 | 25% | ||
crokkon | 0 | 57,778,409,290 | 50% | ||
markjason | 0 | 1,930,929,937 | 50% | ||
anna-mi | 0 | 318,120,390 | 25% | ||
smafey | 0 | 123,903,019 | 24.5% | ||
espoem | 0 | 22,767,358,082 | 12.71% | ||
playitforward | 0 | 8,942,578,602 | 15% | ||
mcfarhat | 0 | 11,658,163,263 | 7.26% | ||
critic-on | 0 | 201,680,959 | 5% | ||
penauthor | 0 | 332,179,632 | 2.5% | ||
mrblinddraw | 0 | 9,049,455,454 | 45% | ||
animagic | 0 | 2,820,902,587 | 50% | ||
jacobkaled | 0 | 82,152,676 | 24.5% | ||
isnochys | 0 | 8,315,911,726 | 13% | ||
jrawsthorne | 0 | 6,058,565,884 | 100% | ||
maaz23 | 0 | 370,131,904 | 24.5% | ||
rightscomet | 0 | 103,928,359 | 24.5% | ||
ngc | 0 | 557,270,755,376 | 5% | ||
imaginedragon | 0 | 711,543,065 | 12.5% | ||
alvinauh | 0 | 9,344,628,921 | 50% | ||
nudgent | 0 | 97,588,409 | 24.5% | ||
utopian-io | 0 | 50,544,877,399,537 | 36.79% | ||
smaeunabs | 0 | 3,022,275,219 | 25% | ||
unforgettable | 0 | 3,351,292,963 | 100% | ||
jaff8 | 0 | 33,248,769,009 | 18.16% | ||
elchin | 0 | 693,751,013 | 100% | ||
emrebeyler | 0 | 653,485,207,694 | 100% | ||
seanlloyd | 0 | 242,727,311 | 1% | ||
scuzzy | 0 | 695,912,311 | 2.5% | ||
mrmaracucho | 0 | 219,315,682 | 49% | ||
craigahamilton | 0 | 532,838,079 | 25% | ||
spectrums | 0 | 329,265,474 | 50% | ||
etherpunk | 0 | 2,372,510,933 | 2.5% | ||
nairadaddy | 0 | 1,049,668,544 | 2.5% | ||
berkaytekinsen | 0 | 844,198,783 | 50% | ||
whiterabb1t | 0 | 178,137,861 | 2.75% | ||
jeffbernst | 0 | 81,897,190 | 10% | ||
evilest-fiend | 0 | 1,768,773,434 | 50% | ||
tentalavera | 0 | 127,762,874 | 5% | ||
forkonti | 0 | 542,418,180 | 100% | ||
curazao | 0 | 86,728,036 | 50% | ||
josephsavage | 0 | 24,891,389,299 | 100% | ||
sireh | 0 | 2,996,638,560 | 12.5% | ||
coingecko | 0 | 444,240,111,648 | 47% | ||
greenorange | 0 | 546,627,890 | 100% | ||
hellowhale | 0 | 153,971,431 | 100% | ||
gokos | 0 | 399,730,165 | 100% | ||
enjoyy | 0 | 210,142,279 | 24.5% | ||
berkerpeksag | 0 | 1,575,366,877 | 100% | ||
aydant | 0 | 5,504,585,398 | 100% | ||
intelligencer | 0 | 0 | 100% | ||
owaishassankhan | 0 | 95,416,686 | 25% | ||
aidnessanchez | 0 | 287,698,890 | 25% | ||
sachincool | 0 | 30,050,174,965 | 100% | ||
turkolog | 0 | 379,066,842 | 100% | ||
ataturk | 0 | 541,101,319 | 100% | ||
sagor5828 | 0 | 360,590,704 | 25% | ||
flashfiction | 0 | 1,659,679,140 | 50% | ||
asyrafahamed | 0 | 562,100,115 | 15% | ||
tinowhale | 0 | 2,578,904,850 | 49% | ||
paragon99 | 0 | 37,615,720 | 25% | ||
hayirhah | 0 | 617,639,147 | 27.5% | ||
camillius | 0 | 151,245,953 | 25% | ||
lukecreed | 0 | 245,274,101 | 24.5% | ||
amosbastian | 0 | 46,427,623,964 | 18.16% | ||
jonnahmatias1016 | 0 | 183,894,842 | 25% | ||
tdre | 0 | 78,894,933,220 | 100% | ||
fromhell2sky | 0 | 8,241,802,268 | 24.5% | ||
leticiapereira | 0 | 528,656,108 | 100% | ||
ydavgonzalez | 0 | 28,423,110,912 | 100% | ||
imnotasenuelo | 0 | 71,702,019 | 25% | ||
sauronbey | 0 | 3,975,898,406 | 100% | ||
asaj | 0 | 17,879,188,857 | 100% | ||
smjn | 0 | 309,369,173,919 | 50% | ||
onursa | 0 | 459,484,401 | 100% | ||
crypto3d | 0 | 5,919,977,352 | 25% | ||
jjay | 0 | 500,844,399 | 100% | ||
coinmeria | 0 | 678,924,234 | 35% | ||
ucmuharfli | 0 | 297,009,487 | 10% | ||
googletr | 0 | 0 | 100% | ||
gky | 0 | 95,840,261 | 25% | ||
embesilikat | 0 | 277,217,631 | 13.75% | ||
adamzi | 0 | 1,452,457,594 | 25% | ||
portugalcoin | 0 | 10,455,341,394 | 15% | ||
chorock | 0 | 87,030,495,263 | 9% | ||
deejee | 0 | 99,156,971 | 25% | ||
mattockfs | 0 | 42,554,501,445 | 100% | ||
luisal314 | 0 | 232,635,546 | 100% | ||
gulumserunver | 0 | 88,462,072 | 22% | ||
neokuduk | 0 | 6,057,840,242 | 100% | ||
emirfirlar | 0 | 565,671,352 | 24.5% | ||
bishoppeter1 | 0 | 90,024,865 | 5% | ||
literaturk | 0 | 431,753,141 | 100% | ||
zephalexia | 0 | 352,909,273,382 | 100% | ||
holger80 | 0 | 460,328,110,807 | 75% | ||
debruyne844 | 0 | 98,076,864 | 25% | ||
isisfemale | 0 | 251,180,735 | 100% | ||
uzerebru | 0 | 114,147,254 | 41% | ||
uzercanan | 0 | 203,813,697 | 45% | ||
warpedpoetic | 0 | 2,054,097,603 | 7.5% | ||
sndbox-alpha | 0 | 15,239,636,223 | 50% | ||
ahmetmertugrul | 0 | 832,386,610 | 100% | ||
samedb | 0 | 522,539,038 | 100% | ||
giftbox | 0 | 193,200,488 | 100% | ||
evansbankx | 0 | 322,070,509 | 100% | ||
kaeo | 0 | 243,026,215 | 50% | ||
ameliabartlett | 0 | 1,253,166,811 | 7.5% | ||
tdogvoid | 0 | 389,470,104 | 100% | ||
gentmartin | 0 | 1,836,809,193 | 25% | ||
rinbird | 0 | 242,176,936 | 50% | ||
faithvarron | 0 | 74,996,468 | 24.5% | ||
sjomeath | 0 | 108,172,937 | 5.5% | ||
henryconache | 0 | 323,633,962 | 25% | ||
tailslide | 0 | 72,415,021 | 25% | ||
agememnon | 0 | 1,118,642,086 | 49.5% | ||
beladro | 0 | 954,088,469 | 25% | ||
tipitip | 0 | 747,030,979 | 100% | ||
aimei | 0 | 98,895,046 | 25% | ||
ahmeterbay | 0 | 10,271,872,382 | 100% | ||
raoul.poenar | 0 | 1,990,134,131 | 100% | ||
akifane | 0 | 533,750,892 | 100% | ||
rasit | 0 | 437,578,974 | 100% | ||
medical-hall | 0 | 194,460,728 | 50% | ||
eightbitfiction | 0 | 73,664,569 | 25% | ||
shredz7 | 0 | 13,725,409,603 | 100% | ||
fego | 0 | 9,570,343,530 | 18.16% | ||
rainbowlord | 0 | 214,143,176 | 44% | ||
gjones15 | 0 | 104,242,391 | 24.5% | ||
nagaclub | 0 | 93,724,673 | 24.5% | ||
ruh | 0 | 661,868,990 | 100% | ||
maveraunnehr | 0 | 390,438,995 | 100% | ||
lifediaries2nd | 0 | 130,739,361 | 25% | ||
j85063 | 0 | 9,526,169,147 | 10% | ||
bulent1976 | 0 | 1,462,696,242 | 100% | ||
lionsuit | 0 | 687,353,446 | 5% | ||
tolgahanuzun | 0 | 15,219,763,834 | 100% | ||
sanctuspierre | 0 | 99,121,005 | 25% | ||
ibez | 0 | 97,651,709 | 25% | ||
muratkbesiroglu | 0 | 277,449,868,265 | 100% | ||
ahmetchef | 0 | 498,749,335 | 27.5% | ||
anak123 | 0 | 254,202,425 | 25% | ||
kemalyokus | 0 | 204,528,686 | 27.5% | ||
louis88 | 0 | 248,579,107,197 | 60% | ||
sereze | 0 | 8,438,857,629 | 100% | ||
zcool | 0 | 188,424,609 | 10% | ||
carloniere | 0 | 234,602,087 | 50% | ||
bit6in | 0 | 97,683,479 | 25% | ||
mandarin2016 | 0 | 739,899,551 | 100% | ||
varolleng | 0 | 208,458,521 | 55% | ||
juned0292 | 0 | 96,249,234 | 25% | ||
carment | 0 | 97,447,675 | 24.5% | ||
daszod | 0 | 188,872,570 | 49% | ||
alitavirgen | 0 | 17,085,239,678 | 10% | ||
statsexpert | 0 | 7,254,247,944 | 100% | ||
firster78 | 0 | 181,551,715 | 38.49% | ||
victorcovrig | 0 | 646,270,942 | 50% | ||
blaqboyikott | 0 | 92,452,796 | 24.5% | ||
canku | 0 | 81,698,157 | 55% | ||
tugbaerdem | 0 | 70,847,076 | 20% | ||
blockmountain | 0 | 161,793,508 | 25% | ||
feronio | 0 | 1,312,339,896 | 100% | ||
riandifc | 0 | 85,300,107 | 25% | ||
hyroniz | 0 | 100,610,400 | 25% | ||
wr212 | 0 | 88,010,245 | 25% | ||
we-are | 0 | 5,759,704,736 | 10.41% | ||
jumbot | 0 | 121,644,801,504 | 55% | ||
rechellomataro | 0 | 72,550,615 | 24.5% | ||
steeman220 | 0 | 81,643,512 | 24.5% | ||
recordpool | 0 | 159,057,952 | 10% | ||
sigmund | 0 | 192,939,885 | 25% | ||
mcanimation | 0 | 253,023,887 | 100% | ||
sbi3 | 0 | 96,600,913,646 | 14.22% | ||
apteacher | 0 | 1,190,234,470 | 10% | ||
ryuna.siege | 0 | 208,796,483 | 100% | ||
we-are-asia | 0 | 3,966,913,781 | 100% | ||
kryptorero | 0 | 99,928,683 | 24.5% | ||
bahagia9 | 0 | 87,338,443 | 24.5% | ||
crazyluv | 0 | 98,508,326 | 25% | ||
alisari | 0 | 106,499,826 | 27.5% | ||
gydronium | 0 | 127,562,260 | 29.4% | ||
blockchainstudio | 0 | 39,727,806,887 | 100% | ||
thecolaguy | 0 | 249,105,012 | 100% | ||
senseofhumor | 0 | 554,195,243 | 100% | ||
jickirti | 0 | 99,321,249 | 25% | ||
bilimkurgu | 0 | 130,200,368,543 | 100% | ||
hahajin | 0 | 0 | 100% | ||
abysoyjoy | 0 | 100,764,249 | 25% | ||
witnessbot | 0 | 1,056,712,187 | 100% | ||
digitaldreamer | 0 | 161,851,222 | 50% | ||
zam398 | 0 | 137,565,889 | 25% | ||
sarez | 0 | 4,875,896,656 | 25% | ||
sumomo | 0 | 601,627,883 | 25% | ||
parakazan | 0 | 223,403,269 | 100% | ||
steemit-uruguay | 0 | 161,362,069 | 50% | ||
apshamilton | 0 | 178,814,097,856 | 100% | ||
sbd-fairy | 0 | 225,765,586 | 49% | ||
carpet.duck | 0 | 247,706,702 | 25% | ||
msjito | 0 | 240,330,143 | 50% | ||
firatuz | 0 | 5,623,791,970 | 100% | ||
mozer | 0 | 214,413,164 | 5.5% | ||
tahirozgen | 0 | 12,953,923,712 | 14% | ||
pablorg94 | 0 | 455,618,548 | 100% | ||
sulwati | 0 | 94,785,424 | 24.5% | ||
swaze | 0 | 555,472,819 | 100% | ||
cafelate | 0 | 177,276,598 | 5% | ||
sirwayneweezy | 0 | 98,537,822 | 25% | ||
basav | 0 | 72,309,461 | 24.5% | ||
sutter | 0 | 248,870,023 | 24.5% | ||
hamismsf | 0 | 141,013,656,664 | 25% | ||
ulockblock | 0 | 67,705,340,492 | 21.89% | ||
veronicacoli | 0 | 259,554,899 | 100% | ||
oguzcan | 0 | 254,242,526 | 100% | ||
ninjavideo | 0 | 8,309,998,650 | 50% | ||
boyacun | 0 | 194,241,111 | 25% | ||
bboyabluka | 0 | 114,117,637 | 27.5% | ||
penyuteverest | 0 | 98,259,511 | 25% | ||
nieloagranca | 0 | 2,019,638,292 | 4% | ||
nicole5lw | 0 | 547,954,258 | 100% | ||
mariac2601 | 0 | 527,436,929 | 100% | ||
alyssah2tp3green | 0 | 541,260,732 | 100% | ||
steeming-hot | 0 | 0 | 0.05% | ||
fabielblanchard | 0 | 1,707,398,757 | 100% | ||
mops2e | 0 | 112,887,667 | 10.16% | ||
ceruleanblue | 0 | 274,638,681 | 100% | ||
diyanti86 | 0 | 876,918,409 | 25% | ||
ella5u | 0 | 555,570,003 | 100% | ||
yollardannotlar | 0 | 210,486,437 | 100% | ||
twotoedsloth | 0 | 17,375,173,043 | 25% | ||
sophia96 | 0 | 549,440,926 | 100% | ||
jacekw.dev | 0 | 4,063,264,844 | 100% | ||
steemituplife | 0 | 3,354,103,688 | 25% | ||
beemtutorials | 0 | 348,837,622 | 100% | ||
ijark | 0 | 98,347,340 | 25% | ||
raghao | 0 | 1,488,273,954 | 25% | ||
esiselac1980 | 0 | 553,504,521 | 100% | ||
itypstylgesch | 0 | 537,628,074 | 100% | ||
campmolmabe | 0 | 553,160,164 | 100% | ||
nkilehisli | 0 | 537,262,650 | 100% | ||
palaceterc | 0 | 551,054,129 | 100% | ||
momarsijit | 0 | 544,874,618 | 100% | ||
careafusli | 0 | 540,716,061 | 100% | ||
ali.yuce | 0 | 153,808,154 | 100% | ||
merlin7 | 0 | 3,605,804,129 | 0.1% | ||
priyanarc | 0 | 27,252,751,754 | 10% | ||
megaraz | 0 | 58,843,464 | 100% | ||
aljofer | 0 | 97,946,697 | 25% | ||
steem-ua | 0 | 449,943,879,195 | 4.17% | ||
alvinvoo | 0 | 914,498,722 | 100% | ||
daddywilliam | 0 | 433,021,997 | 24.5% | ||
arequipa | 0 | 259,132,002 | 100% | ||
criptoanarquista | 0 | 1,088,891,470 | 100% | ||
leviackerman | 0 | 260,688,163 | 100% | ||
bluerobo | 0 | 8,900,404,336 | 100% | ||
toheliuk | 0 | 241,608,509 | 25% | ||
bluesniper | 0 | 2,628,246,179 | 0.6% | ||
steemtank | 0 | 2,418,814,693,385 | 100% | ||
ascorphat | 0 | 1,962,321,323 | 2.5% | ||
kelicimchi | 0 | 162,998,782 | 25% | ||
luna777 | 0 | 1,179,248,623 | 3.14% | ||
coskunsoysal | 0 | 453,543,983 | 100% | ||
frankdanger | 0 | 529,782,836 | 100% | ||
skymin | 0 | 27,552,395,020 | 100% | ||
fyn | 0 | 2,388,088,377 | 60% | ||
bejust | 0 | 2,176,467,679 | 100% | ||
writeandearn | 0 | 323,126,626 | 25% | ||
cooperfelix | 0 | 1,910,533,042 | 15% | ||
tony.montana | 0 | 1,358,845,581 | 2.5% | ||
hamsa.quality | 0 | 1,564,867,865 | 1.1% | ||
curation.trail | 0 | 3,091,762,235 | 4.04% | ||
xrp.trail | 0 | 984,580,670 | 1.5% | ||
progressing | 0 | 1,966,679,417 | 100% | ||
themadcurator | 0 | 693,789,130,444 | 19% | ||
lujuria | 0 | 259,587,342 | 100% | ||
audextovar | 0 | 473,212,803 | 100% | ||
bitcoinator | 0 | 39,969,869,709 | 50% | ||
videografist | 0 | 505,485,324 | 100% |
Actually i love to learn this aspect of computer that deals with this coding and stuff like this but i am fearing that i will not be able to cope because of its level of complex
author | adenijiadeshina |
---|---|
permlink | re-emrebeyler-bug-on-hivemind-on-follows-20190206t132902663z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-02-06 13:29:03 |
last_update | 2019-02-06 13:29:03 |
depth | 1 |
children | 0 |
last_payout | 2019-02-13 13:29: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 | 177 |
author_reputation | 36,301,706,958,332 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,480,448 |
net_rshares | 0 |
Great pickup! There are obviously still some teething issues with Hivemind and there will always be the need for some full steamd nodes to enable these sort of checks. Question is who pays for them? Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
author | apshamilton |
---|---|
permlink | apshamilton-re-emrebeyler-bug-on-hivemind-on-follows-20190206t100714255z |
category | utopian-io |
json_metadata | "{\"app\":\"partiko\",\"client\":\"ios\"}" |
created | 2019-02-06 10:07:15 |
last_update | 2019-02-06 10:07:15 |
depth | 1 |
children | 3 |
last_payout | 2019-02-13 10:07:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.162 HBD |
curator_payout_value | 0.051 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 260 |
author_reputation | 212,460,980,305,363 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,473,735 |
net_rshares | 450,025,153,430 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jadabug | 0 | 1,301,770,862 | 1% | ||
ezravandi | 0 | 721,386,182 | 1% | ||
hamismsf | 0 | 448,001,996,386 | 80% |
Witnesses! :-) I am planning to fire up a full node. Just waiting for the top20. 🎉
author | emrebeyler |
---|---|
permlink | re-apshamilton-apshamilton-re-emrebeyler-bug-on-hivemind-on-follows-20190206t100844498z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-02-06 10:08:45 |
last_update | 2019-02-06 10:08:45 |
depth | 2 |
children | 2 |
last_payout | 2019-02-13 10:08:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.061 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 448,535,049,068,622 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,473,769 |
net_rshares | 171,870,171,260 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
apshamilton | 0 | 171,870,171,260 | 100% |
Do you think it’s realistic to expect all Top 20 witnesses to run full steamd nodes (with 512Gb RAM instances and the cost that goes with this?) I think it’s reasonable to expect them all to run Hive based Full nodes (2x64Gb + 32Gb instances) but a smaller subset will still need to run full steamd nodes. Question how they are compensated for the extra cost. Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
author | apshamilton |
---|---|
permlink | apshamilton-re-emrebeyler-re-apshamilton-apshamilton-re-emrebeyler-bug-on-hivemind-on-follows-20190206t103514375z |
category | utopian-io |
json_metadata | "{\"app\":\"partiko\",\"client\":\"ios\"}" |
created | 2019-02-06 10:35:15 |
last_update | 2019-02-06 10:35:15 |
depth | 3 |
children | 1 |
last_payout | 2019-02-13 10:35:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.169 HBD |
curator_payout_value | 0.053 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 422 |
author_reputation | 212,460,980,305,363 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,474,440 |
net_rshares | 468,982,190,953 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jadabug | 0 | 1,306,645,481 | 1% | ||
josephsavage | 0 | 24,360,418,743 | 100% | ||
ezravandi | 0 | 718,208,916 | 1% | ||
hamismsf | 0 | 442,596,917,813 | 80% |
2018-10-11 to 2018-10-15 Remind me again, what were the release dates for #hf20? Is this potentially related to one of the hotfixes applied at that time?
author | josephsavage | ||||||
---|---|---|---|---|---|---|---|
permlink | re-emrebeyler-bug-on-hivemind-on-follows-20190206t191615702z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.7.2b"} | ||||||
created | 2019-02-06 19:16:15 | ||||||
last_update | 2019-02-06 19:16:15 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2019-02-13 19:16:15 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.132 HBD | ||||||
curator_payout_value | 0.058 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 154 | ||||||
author_reputation | 40,268,506,983,176 | ||||||
root_title | "Bug on Hivemind’s following data" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 79,493,997 | ||||||
net_rshares | 491,838,881,554 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elviento | 0 | 822,040,165 | 0.99% | ||
sbi3 | 0 | 491,016,841,389 | 74.74% |
I dont think so. There is no problem on full nodes, they’re returning the data correct. It might be a hiccup/past bug on tgat timeframe. Hard to say before a full index on a new fresh hivemind.
author | emrebeyler |
---|---|
permlink | re-josephsavage-re-emrebeyler-bug-on-hivemind-on-follows-20190207t051506426z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-02-07 05:15:06 |
last_update | 2019-02-07 05:15:06 |
depth | 2 |
children | 0 |
last_payout | 2019-02-14 05:15:06 |
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 | 196 |
author_reputation | 448,535,049,068,622 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,511,442 |
net_rshares | 0 |
Would there be any way to detect this bug without a reference API node?
author | mattockfs |
---|---|
permlink | re-emrebeyler-bug-on-hivemind-on-follows-20190206t092223622z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-02-06 09:22:24 |
last_update | 2019-02-06 09:22:24 |
depth | 1 |
children | 1 |
last_payout | 2019-02-13 09:22:24 |
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 | 71 |
author_reputation | 11,180,453,239,559 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,472,391 |
net_rshares | 0 |
author | emrebeyler |
---|---|
permlink | re-mattockfs-re-emrebeyler-bug-on-hivemind-on-follows-20190206t092407378z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-02-06 09:24:06 |
last_update | 2019-02-06 09:24:06 |
depth | 2 |
children | 0 |
last_payout | 2019-02-13 09:24:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 448,535,049,068,622 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,472,431 |
net_rshares | 66,226,200,633 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pibara | 0 | 35,409,438,177 | 100% | ||
mattockfs | 0 | 30,816,762,456 | 100% |
This post has been included in the latest edition of [**SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem6february2019-p0evh8ic9s) - a digest of all you need to know about the State of Steem.
author | pennsif |
---|---|
permlink | re-emrebeyler-bug-on-hivemind-on-follows-20190207t191100867z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem6february2019-p0evh8ic9s"],"app":"steemit/0.1"} |
created | 2019-02-07 19:11:00 |
last_update | 2019-02-07 19:11:00 |
depth | 1 |
children | 0 |
last_payout | 2019-02-14 19:11: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 | 232 |
author_reputation | 636,410,097,572,565 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,540,243 |
net_rshares | 0 |
Hello! I am a community manager at Snax. We are trying to make public blockchain based on EOS node. Snax chain will provide transactions over social networks, token supply based on user social influence. Snax as well as Steemit rewards its users for the content created, but Snax works as overlay solution over existing social networks (e.g. Twitter) We have no ICO. We already have a testnet, mainnet will be launched this month, and we currently looking for great candidates for Block Producers like yourself. You can find out more about us at our website snax.one If our project is interesting for you, please let me know by emailing me at tim@snax.one Looking forward to hearing from you, and keep rocking this world!
author | snaxteam |
---|---|
permlink | re-emrebeyler-bug-on-hivemind-on-follows-20190206t212100017z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-02-06 21:21:00 |
last_update | 2019-02-06 21:21:00 |
depth | 1 |
children | 0 |
last_payout | 2019-02-13 21:21: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 | 726 |
author_reputation | 13,750,477,203,164 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,498,371 |
net_rshares | 0 |
#### Hi @emrebeyler! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-bug-on-hivemind-on-follows-20190210t152354z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-02-10 15:23:54 |
last_update | 2019-02-10 15:23:54 |
depth | 1 |
children | 0 |
last_payout | 2019-02-17 15:23:54 |
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 | 289 |
author_reputation | 23,214,230,978,060 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,667,678 |
net_rshares | 0 |
ǝɹǝɥ sɐʍ ɹoʇɐɹnƆ pɐW ǝɥ┴
author | themadcurator |
---|---|
permlink | re-bug-on-hivemind-on-follows-20190206t121133 |
category | utopian-io |
json_metadata | "" |
created | 2019-02-06 12:11:36 |
last_update | 2019-02-06 12:11:36 |
depth | 1 |
children | 0 |
last_payout | 2019-02-13 12:11:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.572 HBD |
curator_payout_value | 0.185 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 53,938,302,377,048 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,477,242 |
net_rshares | 1,579,624,533,172 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 78,065,087,401 | 7% | ||
thecyclist | 0 | 14,277,546,200 | 7% | ||
gingerninja | 0 | 1,144,352,956 | 5% | ||
sdibot | 0 | 97,157,797 | 5% | ||
jadabug | 0 | 1,311,360,364 | 1% | ||
ngc | 0 | 762,393,739,244 | 7% | ||
emrebeyler | 0 | 195,659,766,987 | 31% | ||
penghuren | 0 | 526,553,460 | 8% | ||
z8teyb289qav9z | 0 | 523,335,344,734 | 7% | ||
ezravandi | 0 | 705,560,686 | 1% | ||
leonnolan24 | 0 | 84,350,728 | 5% | ||
ascorphat | 0 | 1,943,644,139 | 2.5% | ||
sehamabashir | 0 | 80,068,476 | 100% |
Thanks for your contribution. Apologies for the delay in review. Your contribution is well detailed and the steps were very easy to follow. Overall I really like the amount of detail you put into the investigation, both within this contribution and inside the GitHub issue. This really is great!. I can see that a collaborator has acknowledged the issue which is also great to see. Although there is no potential fix provided, the level of detail you have added will reduce the level of investigation required by any developer looking into this considerably. Overall, great work and once again, thanks for your contribution. --- Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/5/2-1-1-2-1-2-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | tobias-g |
---|---|
permlink | re-emrebeyler-bug-on-hivemind-on-follows-20190210t141718180z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/5/2-1-1-2-1-2-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-02-10 14:17:18 |
last_update | 2019-02-10 14:17:18 |
depth | 1 |
children | 1 |
last_payout | 2019-02-17 14:17:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.539 HBD |
curator_payout_value | 1.408 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,085 |
author_reputation | 101,057,581,296,921 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,664,860 |
net_rshares | 12,537,481,614,319 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lordneroo | 0 | 20,875,220,972 | 50% | ||
codingdefined | 0 | 23,952,385,521 | 20% | ||
themarkymark | 0 | 205,144,405,475 | 16% | ||
espoem | 0 | 24,606,542,952 | 15% | ||
utopian-io | 0 | 11,762,332,238,636 | 8.23% | ||
jaff8 | 0 | 42,862,216,836 | 21.57% | ||
emrebeyler | 0 | 326,155,171,655 | 50% | ||
sachincool | 0 | 29,448,798,552 | 100% | ||
amosbastian | 0 | 57,402,922,322 | 21.57% | ||
reazuliqbal | 0 | 18,642,915,280 | 10% | ||
statsexpert | 0 | 7,257,693,973 | 100% | ||
ulockblock | 0 | 14,506,166,650 | 5.35% | ||
curbot | 0 | 2,315,138,656 | 100% | ||
ascorphat | 0 | 1,979,796,839 | 2.5% |
Thank you for your review, @tobias-g! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-emrebeyler-bug-on-hivemind-on-follows-20190210t141718180z-20190213t095618z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-02-13 09:56:21 |
last_update | 2019-02-13 09:56:21 |
depth | 2 |
children | 0 |
last_payout | 2019-02-20 09:56:21 |
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 | 60 |
author_reputation | 152,955,367,999,756 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,807,827 |
net_rshares | 0 |
Hey, @emrebeyler! **Thanks for contributing on Utopian**. Congratulations! Your contribution was Staff Picked to receive a maximum vote for the bug-hunting category on Utopian for being of significant value to the project and the open source community. We’re already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-bug-on-hivemind-on-follows-20190211t110817z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-02-11 11:08:18 |
last_update | 2019-02-11 11:08:18 |
depth | 1 |
children | 0 |
last_payout | 2019-02-18 11:08:18 |
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 | 788 |
author_reputation | 152,955,367,999,756 |
root_title | "Bug on Hivemind’s following data" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,707,441 |
net_rshares | 0 |