Yesterday, September 17th 2018, was our last full day in <a href="https://steemit.com/travel/@lukestokes/hello-puerto-rico">Puerto Rico</a> and unfortunately it wasn't spent enjoying the beach or visiting some cool places (I'll be posting about our adventures in the future). Instead, I was glued to my computer for about 15 hours straight. As you may have noticed, the Steem blockchain had some issues yesterday. To explain a little of what happened, I'll first explain what witnesses do (you can read more about that <a href="https://steemit.com/witness-category/@lukestokes/steemit-is-free-but-your-witness-vote-determines-its-future">here</a>). Witnesses on the Steem blockchain are block producers elected by the token holders to run the network. Steem uses a consensus mechanism (fancy way of saying "process we all agree to") known as <a href="https://steemit.com/dpos/@dantheman/dpos-consensus-algorithm-this-missing-white-paper">Delegated Proof of Stake</a> or DPoS which means the top 20 witnesses by vote (along with a 21st witness rotated in from all <a href="https://steemit.com/~witnesses">the backups</a>) determine what the Steem blockchain actually is. If 2/3+1 of them agree, the software and protocols which define the blockchain can be changed. Yesterday there were mainly three different versions of the software running. Version 0.19.6 uses the code prior to <a href="https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin">AppBase</a> which was announced 7 months ago. Version 0.19.12 uses AppBase. Version 0.20.0 is the recently announced <a href="https://steemit.com/steem/@steemitblog/steem-velocity-hardfork-hardfork-20">Hardfork 20</a> code which has been in development for quite some time and is running on a <a href="https://steemit.com/hardfork20/@steemitblog/released-hardfork-20-testnet">testnet</a>. The plan is (was?) to launch Hardfork 20 (HF20) on September 25th. A blockchain "Hardfork" is when new code is released as part of consensus that is not compatible with the old code which means everyone who wants to participate in the network (applications, exchanges, websites, etc) is required to upgrade. Hardforks are scary things. Most blockchains avoid them, and rightfully so. At the same time, most blockchains quickly become archaic compared to their new competitors in terms of functionality, speed, usability, and more. DPoS allows Steem to innovate quickly and get consensus from the network for upgrades. This is why Hardfork 20 is called "20." This isn't our first rodeo. Prior to the hardfork launch date, all network participants are encouraged to test and upgrade their systems. The code has checks like this to ensure code that only works with Hardfork 20 doesn't run before everyone is ready for it: ``` if( has_hardfork( STEEM_HARDFORK_0_20 ) ) ``` and this: ``` if( a.voting_manabar.last_update_time <= STEEM_HARDFORK_0_20_TIME ) ``` This is important because if a consensus-breaking change happens it can cause a fork which means two different versions of the Steem blockchain exist simultaneously. A fork is bad. You can <a href="https://en.wikipedia.org/wiki/Fork_(blockchain)">read all about it here</a>. Forks happen. I remember watching one on the Bitcoin network in real time in <a href="https://bitcoin.org/en/alert/2013-03-11-chain-fork">March of 2013</a>. Recovering from them is very, very tricky and involves shutting down one version of the chain and moving forward with the other while working through any specific safeguards built into the system to avoid old forks being considered valid (such as Steem's last irreversible block number). <h1>So What Happened?</h1> Now that we've set the groundwork for how this stuff works, I'll try to explain (to the best of my ability) what I think happened yesterday. Please understand, I'm not a blockchain core developer so some of this may be incorrect. Keep an eye on the <a href="https://steemit.com/@steemitblog">steemitblog account</a> for further details. One of the features of Hardfork 20 is the <a href="https://steemit.com/steem/@steemitblog/steem-velocity-hardfork-hardfork-20">Upvote Lockout Period</a>: > In Hardfork 17, a change was implemented to prevent upvote abuse by creating a twelve-hour lock-out period at the end of a postβs payout period. During this time, users are no longer allowed to upvote the post. You can read about how Hardfork 20 makes some really good changes there to prevent downvote abuse in the last 12 hours. As someone who experienced that for months, I personally really appreciate this change. Based on <a href="https://github.com/steemit/steem/commit/e2d72730ca812f1afcba7434ddda98f5fcc1ea1d">this commit</a>, my hunch is the <a href="https://github.com/steemit/steem/pull/2572/files#diff-c57fe1c1f164cf2b14e0f779e1e9338cR62">change here</a> caused a problem around block number 26037589 when one version of the code tried to allow a late upvote and the other version did not: ``` 10 assert_exception: Assert Exception _db.head_block_time() < comment.cashout_time - STEEM_UPVOTE_LOCKOUT_HF17: Cannot increase payout within last twelve hours before payout. {} steem_evaluator.cpp:1383 do_apply ``` This caused a hardfork as v20 and v19 diverged. I'm not sure, but I wonder if `STEEM_UPVOTE_LOCKOUT_SECONDS` was needed with another check to see if HF20 was activated yet or not. Once the problem was discovered, the larger and more complicated problem came up of how to get the v19 fork active again. Most of the witnesses, in preparation for the September 25th HF20 switch over had already upgraded to v0.20.0 but most exchanges were probably on v0.19.12 or older. The number one priority of a blockchain is protecting your funds and as witnesses, we didn't want to move ahead with v0.20.0, forcing everyone to upgrade because of a bug. Hardfork changes must happen based on consensus which requires users to vote for witnesses who will support the changes they want. This means we had to fix v19 and get that chain running again. The Steem blockchain is consistently one of the most active blockchains on the planet averaging more than a million transactions a week: <center><a href="http://blocktivity.info/"><img src="https://cdn.steemitimages.com/DQmYnmurCRKp42p9AVkShazQuvZKSUA87CpKv2Kfda9Edr5/image.png"></a></center> Because of that volume, the v19 fork got out of sync enough to make it quite difficult to activate again. <a href="https://github.com/steemit/steem/compare/20180917-increase-fork-buffer#diff-778ae4a84a14457ed12b22337048d2bfR3580">Modifications to the fork database size</a> were needed. Not only did we have to shut down v20 nodes, we had to update v19 nodes with some code changes and ensure the blockchain peers could talk to each other well without getting flooded with invalid blocks from the v20 chain. This involved coordinating one witness to restart their server with `enable-stale-production = true` (something you otherwise want to avoid) and `required-participation = 0` which means the blockchain can move forward, even if you don't have the normal requirement of a minimum number of witnesses participating in order to produce blocks (33%). We also had to configure a checkpoint which ensures our nodes will follow the correct fork. Many of the top witnesses (myself included) have backup servers and in situations like this are careful to ensure their backup servers are still running the old version (v19) in case there's a problem with the new code. Unfortunately for many of us, rebuilding the code, adjusting config.ini settings, and restarting our nodes resulted in a forced, unplanned full replay of the blockchain which takes many hours. My nodes took 4.39 hours to replay and sync up. Witnesses running v20 had to download, uncompress, and replay the entire v19 block_log to get running again as well. All told, it was a 15-hour day in front of my computer. Many witnesses went without sleep to help contribute to this process and provide logs to Steemit, Inc. and community developers (I'll let the heroes who contributed tell their own stories). Communication cordination happened on Steem.chat and Slack among top witnesses during the entire time. Though I've advocated for more real-time transparency in the past, in situations like this, it's helpful to keep the noise down and avoid too many cooks in the kitchen. Even with only about 50 people in a chat room, it's challenging to sift through all the different code patch proposals and ideas circulating about the best path forward. It's also important to ensure information shared is kept private so the chain can't be easily attacked while it's in a vulnerable state. Securing a distributed consensus blockchain with on-chain governance is really hard. Some who are, for lack of a better word, ignorant of the work involved like to gain attention by criticizing what they don't understand and finding fault in things they didn't build. Every time a complicated software project has a bug, they'll ask why more testing wasn't done or how this could have happened. In my 20+ years of software development experience, I understand that some bugs just happen. They make up the perfect storm of untestable, edge-case scenarios. Could this have been avoided? Maybe, but it would have required a specific set of circumstances on the testnet which includes multiple versions running simultaneously with an upvote in the last 12 hours as consensus flips from v19 to v20. Given all the possible permutations of how the Steem blockchain can be used with tens of thousands of active accounts in any given month, testing for all scenarios is currently impossible. In situations like this, all you can do is the best you can do. Recover quickly, recover securely, protect user funds, learn from any mistakes made, and improve for the future. I think the top witnesses are doing exactly that. We all worked together like I've never seen before and learned some new things along the way. I won't include the details here because in moments like this, privacy is important to ensure bad actors don't exploit forks or code changes for their own gain at the expense of the network. If you want to know more, ask the witnesses you support how they were involved. <h1>Conclusion</h1> Though the process was a bit rough and took longer than any of us would have liked, I'm proud of how the team came together with a good combination of patience, exploration, and support to get this chain going again. I don't know what this means for Hardfork 20's release date or if this is the only obscure bug lurking in that code. I do know it was a frustrating way to spend my last full day in Puerto Rico (the beach would have been so much nicer!), but I would do it again because I love this blockchain and the community that supports it. Please stay tuned for more official announcements from Steemit, Inc. and other witnesses. If I've misrepresented something here, please comment below as a correction, and I'll get to it when I can (we're flying back to Nashville today). Both my primary and backup witness nodes are running on v0.19.12 again and my seed node should finish replaying soon. As always, if you have questions, please feel free to ask them, and I'll do my best to answer them or direct you to someone who can. ----- <img src="https://steemitimages.com/DQmR3hhPtgcqhNDZyArucp2dZv2pG62WDKiWam8jrppCXNB/on_a_log_cropped.png"> <p> <div class="pull-right"> <a href="https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in"><img src="https://steemitimages.com/DQmRh7DLpp1hDKugxyWxdDof7rkj5fpBus6tECvv7vcmL6d/smile.png" /></a> </div> <em><a href="https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in">Luke Stokes</a> is a father, <a href="https://steemit.com/@corinnestokes">husband</a>, programmer, STEEM witness, <a href="https://steemit.com/eosdac/@lukestokes/a-big-step-towards-our-decentralized-future-i-ve-joined-the-eosdac-launch-team">DAC launcher</a>, and voluntaryist who wants to help create a world we all want to live in. Learn about cryptocurrency at <a href="http://understandingblockchainfreedom.com/">UnderstandingBlockchainFreedom.com</a></em> </p> <center><a href="http://steemitboard.com/board.html?user=lukestokes"><img src="https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/commented.png?v=20180909"> <img src="https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/votes.png?v=20180909"> <img src="https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/posts.png?v=20180909"><img src="https://steemitimages.com/80x65/http://steemitboard.com/@lukestokes/level.png?v=20180909"> <img src="https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/comments.png?v=20180909"> <img src="https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/voted.png?v=20180909"> <img src="https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/payout.png?v=20180909"></a></center> <center><sub><a href="https://steemit.com/witness-category/@lukestokes/vote-luke-stokes-for-witness-as-lukestokes-mhth">I'm a Witness</a>! Please <a href="https://steemit.com/~witnesses">vote for @lukestokes.mhth</a></sub></center><center><a href="https://steemit.com/~witnesses" alt="Please vote for @lukestokes.mhth"><img src="https://cdn.steemitimages.com/DQmbKo2EKkp9CutoMxHoTcHdMWE21FcgdB5bVrhqxRFLQsK/image.png"></a></center>
author | lukestokes |
---|---|
permlink | witness-update-15-hours-in-front-of-a-computer-in-puerto-rico |
category | witness-category |
json_metadata | {"tags":["witness-category","witness-update","steem","hf20"],"image":["https://cdn.steemitimages.com/DQmYnmurCRKp42p9AVkShazQuvZKSUA87CpKv2Kfda9Edr5/image.png","https://steemitimages.com/DQmR3hhPtgcqhNDZyArucp2dZv2pG62WDKiWam8jrppCXNB/on_a_log_cropped.png","https://steemitimages.com/DQmRh7DLpp1hDKugxyWxdDof7rkj5fpBus6tECvv7vcmL6d/smile.png","https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/commented.png?v=20180909","https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/votes.png?v=20180909","https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/posts.png?v=20180909","https://steemitimages.com/80x65/http://steemitboard.com/@lukestokes/level.png?v=20180909","https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/comments.png?v=20180909","https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/voted.png?v=20180909","https://steemitimages.com/50x55/http://steemitboard.com/@lukestokes/payout.png?v=20180909","https://cdn.steemitimages.com/DQmbKo2EKkp9CutoMxHoTcHdMWE21FcgdB5bVrhqxRFLQsK/image.png"],"links":["https://steemit.com/travel/@lukestokes/hello-puerto-rico","https://steemit.com/witness-category/@lukestokes/steemit-is-free-but-your-witness-vote-determines-its-future","https://steemit.com/dpos/@dantheman/dpos-consensus-algorithm-this-missing-white-paper","https://steemit.com/~witnesses","https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin","https://steemit.com/steem/@steemitblog/steem-velocity-hardfork-hardfork-20","https://steemit.com/hardfork20/@steemitblog/released-hardfork-20-testnet","https://en.wikipedia.org/wiki/Fork_(blockchain)","https://bitcoin.org/en/alert/2013-03-11-chain-fork","https://steemit.com/@steemitblog","https://github.com/steemit/steem/commit/e2d72730ca812f1afcba7434ddda98f5fcc1ea1d","https://github.com/steemit/steem/pull/2572/files#diff-c57fe1c1f164cf2b14e0f779e1e9338cR62","http://blocktivity.info/","https://github.com/steemit/steem/compare/20180917-increase-fork-buffer#diff-778ae4a84a14457ed12b22337048d2bfR3580","https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in","https://steemit.com/@corinnestokes","https://steemit.com/eosdac/@lukestokes/a-big-step-towards-our-decentralized-future-i-ve-joined-the-eosdac-launch-team","http://understandingblockchainfreedom.com/","http://steemitboard.com/board.html?user=lukestokes","https://steemit.com/witness-category/@lukestokes/vote-luke-stokes-for-witness-as-lukestokes-mhth"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-09-18 15:42:48 |
last_update | 2018-09-18 15:42:48 |
depth | 0 |
children | 41 |
last_payout | 2018-09-25 15:42:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 39.227 HBD |
curator_payout_value | 10.591 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13,558 |
author_reputation | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,596,017 |
net_rshares | 39,466,124,719,378 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 8,878,598,689,263 | 40% | ||
kevinwong | 0 | 7,167,541,854,612 | 100% | ||
the-alien | 0 | 13,368,648,969 | 100% | ||
hedge-x | 0 | 345,788,480,255 | 100% | ||
intelliguy | 0 | 20,782,483,001 | 100% | ||
tobixen | 0 | 292,864,399,269 | 100% | ||
ericvancewalton | 0 | 135,695,879,290 | 100% | ||
stealthtrader | 0 | 20,484,902,595 | 100% | ||
mrwang | 0 | 2,563,855,404 | 50% | ||
jeffjagoe | 0 | 50,384,895,347 | 100% | ||
dwinblood | 0 | 438,633,171,082 | 100% | ||
streetstyle | 0 | 376,231,844,102 | 30% | ||
lichtblick | 0 | 578,688,121,815 | 100% | ||
steemed-open | 0 | 664,349,821,126 | 100% | ||
arconite | 0 | 30,243,310,975 | 50% | ||
cybercodetwins | 0 | 4,172,989,804 | 100% | ||
timcliff | 0 | 398,498,916,307 | 81% | ||
brendio | 0 | 506,585,881,215 | 100% | ||
surfermarly | 0 | 31,934,144,227 | 100% | ||
hyperbatata | 0 | 0 | 100% | ||
fooblic | 0 | 19,271,861,468 | 99% | ||
bryan-imhoff | 0 | 121,690,544,252 | 50% | ||
intothewild | 0 | 19,378,397,716 | 100% | ||
anotherjoe | 0 | 155,512,973,839 | 10% | ||
stevescoins | 0 | 22,289,618,748 | 32% | ||
protegeaa | 0 | 754,501,693,863 | 100% | ||
steevc | 0 | 86,263,024,092 | 45% | ||
skycorridors | 0 | 30,539,068,655 | 100% | ||
therealpaul | 0 | 154,947,972,605 | 69% | ||
penguinpablo | 0 | 222,480,930,101 | 10% | ||
canadian-coconut | 0 | 2,632,073,466,656 | 18% | ||
allyouneedtoknow | 0 | 63,404,316,846 | 60% | ||
rynow | 0 | 11,337,216,275 | 2% | ||
sambillingham | 0 | 4,987,700,338 | 100% | ||
cardboard | 0 | 171,599,072 | 100% | ||
newhope | 0 | 1,862,652,071,539 | 22% | ||
ericwilson | 0 | 30,570,865,153 | 50% | ||
dimitrisp | 0 | 9,026,791,765 | 25% | ||
tarazkp | 0 | 280,291,533,459 | 42% | ||
sodom | 0 | 163,059,113 | 100% | ||
elviento | 0 | 2,175,427,042 | 8% | ||
alexis555 | 0 | 1,506,963,227,755 | 21% | ||
preparedwombat | 0 | 43,365,106,865 | 100% | ||
icybc | 0 | 4,609,075,735 | 27% | ||
jayem | 0 | 1,132,719,988 | 100% | ||
jerge | 0 | 365,493,840 | 10% | ||
andyjaypowell | 0 | 36,548,995,303 | 25% | ||
sacred-agent | 0 | 112,639,331,923 | 100% | ||
oxiecuador | 0 | 201,689,081 | 5% | ||
steemitlotteries | 0 | 208,392,312 | 67% | ||
leeuw | 0 | 74,450,265,128 | 48% | ||
bitcoinflood | 0 | 415,936,428,896 | 100% | ||
drakos | 0 | 2,466,637,400,068 | 100% | ||
insiders | 0 | 220,380,047 | 57% | ||
rival | 0 | 60,472,319,830 | 100% | ||
sensation | 0 | 252,306,781 | 100% | ||
haiyangdeperci | 0 | 6,951,163,741 | 20% | ||
navaneeth | 0 | 126,382,236 | 100% | ||
vallesleoruther | 0 | 68,497,147,251 | 100% | ||
winstonalden | 0 | 42,688,976,662 | 60% | ||
christianity101 | 0 | 382,707,126 | 78% | ||
uberbrady | 0 | 2,945,461,296 | 100% | ||
teukumuhas | 0 | 89,950,759 | 5% | ||
imbritish | 0 | 213,271,317 | 55% | ||
leveragetrading | 0 | 356,625,436 | 67% | ||
abcbullion | 0 | 390,649,855 | 64% | ||
tribesteemup | 0 | 6,091,704,788,228 | 15% | ||
sk43 | 0 | 6,911,184,892 | 100% | ||
gregvence | 0 | 656,139,041 | 100% | ||
greenrun | 0 | 102,767,156,471 | 100% | ||
nurhayati | 0 | 4,813,417,542 | 50% | ||
therealwolf | 0 | 1,429,494,200,737 | 50% | ||
scorer | 0 | 39,516,322,007 | 100% | ||
revisesociology | 0 | 108,910,551,567 | 100% | ||
majes.tytyty | 0 | 0 | 0% | ||
wallacecarranza | 0 | 524,935,742 | 100% | ||
rid314 | 0 | 7,973,977,588 | 100% | ||
blockchainlib | 0 | 527,660,188 | 100% | ||
gordon92 | 0 | 4,573,957,936 | 50% | ||
catalincernat | 0 | 10,240,875,488 | 100% | ||
mstafford | 0 | 7,946,369,422 | 100% | ||
canusapatriots | 0 | 0 | 0% | ||
oups | 0 | 17,567,217,547 | 100% | ||
robertandrew | 0 | 70,717,839,726 | 100% | ||
steem-network | 0 | 82,367,505 | 100% | ||
newageinv | 0 | 31,987,347,893 | 20% | ||
holger80 | 0 | 159,362,245,987 | 100% | ||
intrepidsurfer | 0 | 18,156,701,847 | 100% | ||
sloe | 0 | 4,449,168,914 | 100% | ||
dr-frankenstein | 0 | 802,592,561 | 100% | ||
ellis.marell | 0 | 1,820,348,629 | 100% | ||
bozz | 0 | 7,288,427,172 | 30% | ||
maritagrabowski | 0 | 6,288,257,749 | 100% | ||
victorrojas4 | 0 | 36,392,012,271 | 100% | ||
zedpal | 0 | 97,443,787 | 100% | ||
beetlevc | 0 | 626,962,498 | 1% | ||
uuits | 0 | 0 | 100% | ||
somalianfog | 0 | 578,872,701 | 100% | ||
dezmond | 0 | 286,324,695 | 100% | ||
pboulet | 0 | 610,102,930 | 100% | ||
dappcast | 0 | 1,604,680,586 | 100% | ||
sientongdarto | 0 | 358,951,782 | 100% | ||
soanna | 0 | 286,746,066 | 100% | ||
tiwari | 0 | 459,645,718 | 100% | ||
matahayati | 0 | 600,981,717 | 100% | ||
neyda1975 | 0 | 595,808,458 | 100% | ||
supreme.mal | 0 | 512,819,550 | 100% | ||
weos | 0 | 121,351,499 | 100% | ||
tagmotivate | 0 | 120,072,255 | 100% | ||
waleedtee | 0 | 0 | 100% | ||
chizzy4real | 0 | 0 | 100% |
Man what a bummer to have this whole thing happen when you're holiday-ing. Thanks for all the work and hassle you went through (I know it was the right thing to vote for you as witness). I may know nothing about the stress you and the other witness must have felt glued to the screen, but I do know that being able to comment this right now had not possible had not been for that. It's communications like this that gives confidence in a witness.
author | awesomianist |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t182620811z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 18:26:21 |
last_update | 2018-09-18 18:26:21 |
depth | 1 |
children | 1 |
last_payout | 2018-09-25 18:26: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 | 449 |
author_reputation | 30,939,172,096,979 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,607,314 |
net_rshares | 0 |
Thank you for your support. A lot of great witnesses worked really hard. Makes me proud to work with them.
author | lukestokes |
---|---|
permlink | re-awesomianist-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t224216499z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 22:42:18 |
last_update | 2018-09-18 22:42:18 |
depth | 2 |
children | 0 |
last_payout | 2018-09-25 22:42: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 | 106 |
author_reputation | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,622,262 |
net_rshares | 0 |
100% upvote thank you for all you do on the steem network and keeping it running
author | bitcoinflood |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t164654882z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 16:46:54 |
last_update | 2018-09-18 16:46:54 |
depth | 1 |
children | 0 |
last_payout | 2018-09-25 16:46: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 | 80 |
author_reputation | 1,645,024,977,979,240 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,600,599 |
net_rshares | 0 |
Thank you @lukestokes! Sorry to hear about your shortened vacation but thank you for your work. On a positive, Steem jumped a little bit :)
author | ericwilson |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t162247873z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"users":["lukestokes"],"app":"steemit/0.1"} |
created | 2018-09-18 16:22:51 |
last_update | 2018-09-18 16:22:51 |
depth | 1 |
children | 1 |
last_payout | 2018-09-25 16:22: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 | 140 |
author_reputation | 75,821,273,922,571 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,598,859 |
net_rshares | 4,542,835,628 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sloe | 0 | 4,542,835,628 | 100% |
Hahah... I was laughing about that also. Everything was red but Steem.
author | lukestokes |
---|---|
permlink | re-ericwilson-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t223938120z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 22:39:39 |
last_update | 2018-09-18 22:39:39 |
depth | 2 |
children | 0 |
last_payout | 2018-09-25 22:39:39 |
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 | 70 |
author_reputation | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,622,140 |
net_rshares | 0 |
Technically, we either migrated back to the original v0.19 code.... but in order to gain consensus, some patching with the server to ignore v0.20 acceptance of the 12 hour window for voting was necessary. I patched my witness node myself after learning about what was needed. It was a tricky situation indeed. I understand why it took as long as it did to clean up. (I went into further detail [here](https://steemit.com/steem/@intelliguy/steem-was-temporarily-down-so-what-happened-you-have-questions-let-s-provide-some-answers). Glad to see you are up and running again!
author | intelliguy |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t200850708z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"links":["https://steemit.com/steem/@intelliguy/steem-was-temporarily-down-so-what-happened-you-have-questions-let-s-provide-some-answers"],"app":"steemit/0.1"} |
created | 2018-09-18 20:08:51 |
last_update | 2018-09-18 20:08:51 |
depth | 1 |
children | 8 |
last_payout | 2018-09-25 20:08:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.134 HBD |
curator_payout_value | 0.045 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 577 |
author_reputation | 62,276,657,564,898 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,613,661 |
net_rshares | 136,786,964,928 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tobixen | 0 | 136,786,964,928 | 50% |
Yeah the almost five hour replays were extra difficult as well. It seems some had to replay and others didnβt. That added a lot of drama. I was ready to go with my v19 node but vanderberg asked me to hold off since he didnβt want to risk anymore replays and we wanted to keep v19 nodes ready to restart with enable stale production if needed. Eventually we mostly had to replay anyway. By the time I tried, my v20 node already downloaded, decompressed, and replayed as well.
author | lukestokes |
---|---|
permlink | re-intelliguy-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t225140310z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 22:51:42 |
last_update | 2018-09-18 22:51:42 |
depth | 2 |
children | 7 |
last_payout | 2018-09-25 22:51:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 474 |
author_reputation | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,622,727 |
net_rshares | 19,810,203,095 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
intelliguy | 0 | 19,810,203,095 | 100% |
Yes, by the time you realized your replay, when synced was no good, you had to replay again. Tough times this replay stuff. Replaying should never be necessary "EVER"... because replaying from genesis is a terrible idea. Archiving the first 2 years of steem... and keeping it in a separate archive database should be sufficient. If the code changes, and can't read the archived format anymore.. there should be a separate utility tool created to port the old archive database to the new format, that runs independently of steemd. Going forward, as the blockchain gets huge... these designs need to happen sooner than later.
author | intelliguy |
---|---|
permlink | re-lukestokes-re-intelliguy-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180919t010246162z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-19 01:02:45 |
last_update | 2018-09-19 01:02:45 |
depth | 3 |
children | 6 |
last_payout | 2018-09-26 01:02:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.260 HBD |
curator_payout_value | 0.086 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 628 |
author_reputation | 62,276,657,564,898 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,630,034 |
net_rshares | 263,051,855,631 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tobixen | 0 | 263,051,855,631 | 100% |
Thanks for all that you do to support the network @lukestokes! Sorry it had to ruin your last day in PR (but from the sound of it, you will have plenty of time to spend down there in the future!)
author | jeffjagoe |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t174545529z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"users":["lukestokes"],"app":"steemit/0.1"} |
created | 2018-09-18 17:45:45 |
last_update | 2018-09-18 17:45:45 |
depth | 1 |
children | 1 |
last_payout | 2018-09-25 17:45:45 |
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 | 197 |
author_reputation | 611,509,397,910,268 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,604,637 |
net_rshares | 0 |
author | lukestokes |
---|---|
permlink | re-jeffjagoe-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t224117364z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 22:41:18 |
last_update | 2018-09-18 22:41:18 |
depth | 2 |
children | 0 |
last_payout | 2018-09-25 22:41:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.799 HBD |
curator_payout_value | 1.239 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,622,214 |
net_rshares | 3,840,769,979,764 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roelandp | 0 | 3,836,978,955,188 | 100% | ||
jeffjagoe | 0 | 3,791,024,576 | 8% |
Thanks for this update. I'm just now reading it, trying to find out a little bit of what's happening with HF-20. After the fork on the 25th, I read certain posts that were immediately critical and excoriating of the fork and the team. On this post, on the other hand, I at least got some clear perspective about the reasons for the fork and the difficulties in implementing it. Keep up the good work ... particularly thru this rather tough time.
author | majes.tytyty |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180928t022656409z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-28 02:26:57 |
last_update | 2018-09-28 02:26:57 |
depth | 1 |
children | 0 |
last_payout | 2018-10-05 02:26: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 | 448 |
author_reputation | 927,812,966,066,955 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,274,545 |
net_rshares | 0 |
Nice to hear it really was all hands on deck during the outage - I was searching out information on the outage and found very little - except for one ranter on Twitter that speculated the problem is due to many inactive witnesses. I'm positively sure that Steem comes strengthened out from this. Still, it's quite unexpected and unheard of with such a long outage, so I hope knowledge is drawn out of this experience and used to prevent such long outage next time...thank you
author | ml-naeem |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180919t190218601z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-19 19:02:00 |
last_update | 2018-09-19 19:02:00 |
depth | 1 |
children | 0 |
last_payout | 2018-09-26 19:02: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 | 475 |
author_reputation | -208,447,771,362 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,699,813 |
net_rshares | 575,765,162 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ml-naeem | 0 | 575,765,162 | 100% |
I try to look at the positive side of things... While there was a loss due to opportunity costs, when things got back online, everything was good asbif nothing had happened which demonstrates that the βfailsafeβ works to protect the blockchain and the funds on it. I also think it was beat for this to occur now rather than after the HF 20 as it now provides time for the witnesses to consider what steps are needed for the transition next week, if it stays there. While I imagine it was tough to find consensus, it was resolved... Now it is all about how we learn and improve for the future as the ecosystem continues to grow.
author | newageinv |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t160720279z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 16:07:21 |
last_update | 2018-09-18 16:07:21 |
depth | 1 |
children | 1 |
last_payout | 2018-09-25 16:07: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 | 629 |
author_reputation | 263,280,351,056,279 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,597,795 |
net_rshares | 0 |
Yep. @steemitblog put out a good post with more details as well.
author | lukestokes |
---|---|
permlink | re-newageinv-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t224021834z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"users":["steemitblog"],"app":"steemit/0.1"} |
created | 2018-09-18 22:40:24 |
last_update | 2018-09-18 22:40:24 |
depth | 2 |
children | 0 |
last_payout | 2018-09-25 22:40: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 | 64 |
author_reputation | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,622,173 |
net_rshares | 0 |
>It's also important to ensure information shared is kept private so the chain can't be easily attacked while it's in a vulnerable state. This is an important point that I hadnβt considered. Maybe 99.9% transparency has advantages over 100% transparency. If it does, who one gives oneβs witness votes to is *even more important*.
author | preparedwombat |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180919t031757448z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-19 03:17:57 |
last_update | 2018-09-19 03:19:42 |
depth | 1 |
children | 0 |
last_payout | 2018-09-26 03:17: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 | 330 |
author_reputation | 872,539,970,063,366 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,637,558 |
net_rshares | 0 |
Sorry @lukestokes you had to spend time in Puerto Rico rectifying all this. But as Token holders we surely appreciate you soooo much. Thank you, Sir , for the excellent job you are doing !!
author | robertandrew |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180919t030453071z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"users":["lukestokes"],"app":"steemit/0.1"} |
created | 2018-09-19 03:04:54 |
last_update | 2018-09-19 03:04:54 |
depth | 1 |
children | 0 |
last_payout | 2018-09-26 03:04: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 | 189 |
author_reputation | 105,860,343,202,597 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,636,786 |
net_rshares | 0 |
100% UpVote + ReSteemed... Cheers !!
author | sacred-agent |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t165305194z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 16:53:06 |
last_update | 2018-09-18 16:53:06 |
depth | 1 |
children | 0 |
last_payout | 2018-09-25 16:53: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 | 37 |
author_reputation | 4,833,164,215,661 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,601,049 |
net_rshares | 5,660,267,935 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sacred-agent | 0 | 5,660,267,935 | 5% |
Thanks for explaining the situation, Luke!! Glad all is going well again!!
author | skycorridors |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180919t161439871z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-19 16:14:39 |
last_update | 2018-09-19 16:14:39 |
depth | 1 |
children | 0 |
last_payout | 2018-09-26 16:14:39 |
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 | 74 |
author_reputation | 259,582,937,246,728 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,688,990 |
net_rshares | 0 |
I had no lack of faith at all in the Steem blockchain.. That is unfortunate that you had to miss your last day though. π Hopefully in the Future Steem will allow you to spend as much time as you want down there!! π΄
author | stealthtrader |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t164632512z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 16:46:30 |
last_update | 2018-09-18 16:46:30 |
depth | 1 |
children | 1 |
last_payout | 2018-09-25 16:46: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 | 215 |
author_reputation | 74,266,337,461,760 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,600,571 |
net_rshares | 0 |
Itβs part of the job. :)
author | lukestokes |
---|---|
permlink | re-stealthtrader-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t224050696z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 22:40:51 |
last_update | 2018-09-18 22:40:51 |
depth | 2 |
children | 0 |
last_payout | 2018-09-25 22:40:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,622,193 |
net_rshares | 20,053,641,487 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stealthtrader | 0 | 20,053,641,487 | 100% |
Thanks for all your work to get us back online. I know some people were worried, but I've seen the team sort issues like this before and had confidence.
author | steevc |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t192706005z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 19:27:06 |
last_update | 2018-09-18 19:27:06 |
depth | 1 |
children | 1 |
last_payout | 2018-09-25 19:27: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 | 152 |
author_reputation | 1,389,850,200,643,010 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,611,103 |
net_rshares | 0 |
Thank you for the confidence. It was a little bumpy at times, but we got through it.
author | lukestokes |
---|---|
permlink | re-steevc-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t224446995z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 22:44:48 |
last_update | 2018-09-18 22:44:48 |
depth | 2 |
children | 0 |
last_payout | 2018-09-25 22:44:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,622,396 |
net_rshares | 24,609,246,585 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 24,609,246,585 | 12% |
I think many were already waiting for your update on the incident, since you're well known for providing a great insight, without getting lost in details only a few of us may comprehend :-) My biggest takeaway of this situation has been once more that in times of pressure and problems there is always one thing you can rely on: this community. Thanks for your efforts during the *crash* and the time dedicated to inform us! *Resteemed*
author | surfermarly |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180919t114637422z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-19 11:46:39 |
last_update | 2018-09-19 11:46:57 |
depth | 1 |
children | 0 |
last_payout | 2018-09-26 11:46:39 |
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 | 438 |
author_reputation | 318,958,646,866,746 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,668,645 |
net_rshares | 0 |
I take my hat of for you Luke! As entrepreneurs we have to sacrafice personal time to work.
author | tagmotivate |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180919t160407337z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-19 16:04:09 |
last_update | 2018-09-19 16:04:09 |
depth | 1 |
children | 0 |
last_payout | 2018-09-26 16:04:09 |
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 | 91 |
author_reputation | 6,120,543,297 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,688,257 |
net_rshares | 100,060,213 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tagmotivate | 0 | 100,060,213 | 100% |
Woah, I thought I had it bad, but that is really bad timing for you. Nevertheless, I really appreciate the inside information on what exactly happened, since the information-flow wasn't that good. I understand of course that 50 people in a chat-room are already enough, but I would still have appreciated it if someone from Steemit Inc. or somebody else could have given some updates, besides: `"stay calm, downgrade to 0.19.x and don't talk in this chat-room"` With that said: I hope you can use today to relax a bit from yesterday's stress.
author | therealwolf |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t155358410z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 15:53:57 |
last_update | 2018-09-18 15:53:57 |
depth | 1 |
children | 9 |
last_payout | 2018-09-25 15:53:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.178 HBD |
curator_payout_value | 0.056 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 544 |
author_reputation | 581,693,011,827,252 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,596,801 |
net_rshares | 180,254,757,029 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tobixen | 0 | 143,801,681,078 | 50% | ||
jeffjagoe | 0 | 4,167,171,795 | 8% | ||
meno | 0 | 31,496,688,137 | 50% | ||
dr-frankenstein | 0 | 789,216,019 | 100% |
Flying with three kids isnβt usually that relaxing, but the first leg of the trip was great and my noise canceling headphones work great. :) Yeah, this one was stressful. On other issues Iβve spent time connecting with other communities to inform people in real time, but this time I was deeply focused on the conversations taking place and had one of the few nodes still untouched and running v19. Unfortunately my node (like many others) trigger a replay when I tried to launch it. Also, being in an Airbnb on an island with less fha ideal internet had me a little out of my element. Communication is important Abduzhapparov I did tweet about things as soon as it was happening. Itβs hard to give details until we know whatβs actually going on. Otherwise we get too much speculation and knee-jerk reactions which can cause other problems.
author | lukestokes |
---|---|
permlink | re-therealwolf-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t223745148z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 22:37:48 |
last_update | 2018-09-18 22:37:48 |
depth | 2 |
children | 0 |
last_payout | 2018-09-25 22:37:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.134 HBD |
curator_payout_value | 0.045 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 842 |
author_reputation | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,622,052 |
net_rshares | 136,786,964,928 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tobixen | 0 | 136,786,964,928 | 50% |
Better than being on the plane ride back, I suppose.
author | mstafford |
---|---|
permlink | re-therealwolf-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t214950085z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 21:49:51 |
last_update | 2018-09-18 21:49:51 |
depth | 2 |
children | 2 |
last_payout | 2018-09-25 21:49: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 | 52 |
author_reputation | 63,425,345,982,192 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,619,558 |
net_rshares | 0 |
Indeed. :)
author | lukestokes |
---|---|
permlink | re-mstafford-re-therealwolf-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t223854943z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 22:38:57 |
last_update | 2018-09-18 22:38:57 |
depth | 3 |
children | 1 |
last_payout | 2018-09-25 22:38: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 | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,622,101 |
net_rshares | 7,284,171,970 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mstafford | 0 | 7,284,171,970 | 100% |
Perhaps there should be an info page for witnesses behind a steemconnect login so someone from stinc can inform and keep others updated with pertinent information.
author | tarazkp |
---|---|
permlink | re-therealwolf-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t160919146z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 16:09:21 |
last_update | 2018-09-18 16:09:21 |
depth | 2 |
children | 4 |
last_payout | 2018-09-25 16:09:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.140 HBD |
curator_payout_value | 0.046 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 163 |
author_reputation | 5,907,757,211,616,771 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,597,926 |
net_rshares | 142,048,002,041 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tobixen | 0 | 142,048,002,041 | 50% |
The top witnesses defining consensus stayed in constant communication throughout this issue.
author | lukestokes |
---|---|
permlink | re-tarazkp-re-therealwolf-re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180918t223829100z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-18 22:38:30 |
last_update | 2018-09-18 22:38:30 |
depth | 3 |
children | 3 |
last_payout | 2018-09-25 22:38:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.167 HBD |
curator_payout_value | 0.046 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 556,640,380,599,219 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,622,082 |
net_rshares | 170,659,817,125 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tobixen | 0 | 142,048,002,041 | 50% | ||
tarazkp | 0 | 28,611,815,084 | 4% |
Nice to hear it really was all hands on deck during the outage - I was searching out information on the outage and found very little - except for one ranter on Twitter that speculated the problem is due to many inactive witnesses. I'm positively sure that Steem comes strengthened out from this. Still, it's quite unexpected and unheard of with such a long outage, so I hope knowledge is drawn out of this experience and used to prevent such long outage next time. One of my pet peeves - it's horrible and totally avoidable that *all* interfaces to Steem falls down in such a circumstance. I strongly believe that old content as well as user balances should be online and available even though the blockchain is not advancing. It doesn't sound like a very big job to ensure nodes will stay up and deliver content (up to the block where things starts going wrong), but without producing, broadcasting or accepting blocks.
author | tobixen |
---|---|
permlink | re-lukestokes-witness-update-15-hours-in-front-of-a-computer-in-puerto-rico-20180919t124434628z |
category | witness-category |
json_metadata | {"tags":["witness-category"],"app":"steemit/0.1"} |
created | 2018-09-19 12:44:36 |
last_update | 2018-09-19 12:44:36 |
depth | 1 |
children | 0 |
last_payout | 2018-09-26 12:44:36 |
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 | 925 |
author_reputation | 18,276,555,395,725 |
root_title | "Witness Update: 15 Hours In Front of a Computer in Puerto Rico" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,672,598 |
net_rshares | 0 |