SoftFork 0.22.2 confused me as much as it probably did the rest of you, I slept through the fork and so I was very confused, let's take a look into the code: /* If the time of the current block is more than the target SoftFork time */ ``` if ( fc::time_point_sec( STEEM_PROTECTION_HARDFORK_TIME ) <= head_block_time() ) { ``` Based on the kind of operation, block it if it's from a STEEMIT, Inc owned account and: ``` switch( op.which() ) { ``` It's a witness vote or proxy ``` case operation::tag<account_witness_proxy_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< account_witness_proxy_operation >().account ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; case operation::tag<account_witness_vote_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< account_witness_vote_operation >().account ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; case ``` It's a proposal vote ``` operation::tag<update_proposal_votes_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< update_proposal_votes_operation >().voter ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; ``` It's a post vote ``` case operation::tag<vote_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< vote_operation >().voter ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; ``` It's a powerdown (you can powerdown to other accounts) ``` case operation::tag<withdraw_vesting_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< withdraw_vesting_operation >().account ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; ``` Trying to set powerdown route (account to powerdown to) ``` case operation::tag<set_withdraw_vesting_route_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< set_withdraw_vesting_route_operation >().from_account ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; ``` Trying to do a plain-old transfer ``` case operation::tag<transfer_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< transfer_operation >().from ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; ``` Trying to make a market order ``` case operation::tag<limit_order_create_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< limit_order_create_operation >().owner ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; case operation::tag<limit_order_create2_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< limit_order_create2_operation >().owner ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; ``` Powering up ``` case operation::tag<transfer_to_vesting_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< transfer_to_vesting_operation >().from ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; ``` Sending to savings ``` case operation::tag<transfer_to_savings_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< transfer_to_savings_operation >().from ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; ``` Using inbuilt escrow function of the chain to make a transfer ``` case operation::tag<escrow_transfer_operation>::value: if ( hardforkprotect::get_steemit_accounts().count( op.get< escrow_transfer_operation >().from ) ) FC_THROW_EXCEPTION(transaction_exception, "Error when pushing TX:\nReason: TX has been rejected."); break; ``` For any other transaction, allow (so long as all the other requirements are ok) ``` default: break; } } ``` Hope this helps you to understand, ~ @CADawg
author | cadawg |
---|---|
permlink | what-is-softfork-0-22-2-a-dive-into-the-code |
category | hive-169321 |
json_metadata | {"app":"steempeak/2020.02.3","format":"markdown","tags":["programming","steem","softfork","oc","posh","steemleo","palnet","neoxian","marlians","bilpcoin"],"users":["CADawg"],"links":["/@cadawg"],"image":[]} |
created | 2020-02-25 08:48:00 |
last_update | 2020-02-25 08:49:09 |
depth | 0 |
children | 26 |
last_payout | 2020-03-03 08:48:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.931 HBD |
curator_payout_value | 1.790 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,859 |
author_reputation | 100,771,927,095,688 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,807,712 |
net_rshares | 14,811,795,210,921 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gregory-f | 0 | 1,943,754,070 | 0.21% | ||
tshering-tamang | 0 | 13,231,818,169 | 100% | ||
klye | 0 | 44,939,245,773 | 100% | ||
kevinwong | 0 | 263,901,533,999 | 3% | ||
inertia | 0 | 114,577,237,964 | 100% | ||
arcange | 0 | 54,769,008,423 | 3% | ||
coininstant | 0 | -372,818,901,010 | -100% | ||
raphaelle | 0 | 1,468,895,750 | 3% | ||
kdtkaren | 0 | 29,709,456,837 | 100% | ||
holoz0r | 0 | 794,816,646 | 3.5% | ||
anomaly | 0 | 174,471,262 | 1% | ||
greer184 | 0 | 17,480,481,043 | 50% | ||
me-we | 0 | 462,100,824 | 100% | ||
robinmmthompson | 0 | 9,544,731,022 | 100% | ||
mangos | 0 | 839,217,630,309 | 21% | ||
tangmo | 0 | 59,681,262,496 | 100% | ||
cardboard | 0 | 20,626,775,398 | 100% | ||
newhope | 0 | 1,469,143,302,199 | 16% | ||
driptorchpress | 0 | 29,152,634,084 | 75% | ||
erikaflynn | 0 | 5,010,388,555 | 12% | ||
asshole | 0 | 7,926,739,293 | 100% | ||
honusurf | 0 | 322,758,290,575 | 99% | ||
sn0n | 0 | 172,722,810,558 | 100% | ||
borislavzlatanov | 0 | 128,793,096,230 | 100% | ||
alinabarbu | 0 | 2,159,584,637 | 10% | ||
imperfect-one | 0 | 1,227,925,228 | 10% | ||
stackin | 0 | 144,375,669,573 | 10% | ||
mys | 0 | 22,117,040,290 | 10% | ||
skepticology | 0 | 5,174,038,932 | 100% | ||
ew-and-patterns | 0 | 34,858,463,275 | 2% | ||
techken | 0 | 2,194,964,814 | 10% | ||
whd | 0 | 12,959,506,293 | 10% | ||
netuoso | 0 | 337,648,576,179 | 100% | ||
otom | 0 | 88,495,791,708 | 100% | ||
exe8422 | 0 | 587,224,353 | 6% | ||
fiftysixnorth | 0 | 6,214,845,168 | 30% | ||
rarebooksleuth | 0 | 194,485,539 | 50% | ||
pixelfan | 0 | 7,492,285,622 | 1.3% | ||
davedickeyyall | 0 | 180,950,575,929 | 15% | ||
showtime | 0 | 1,398,287,077 | 50% | ||
coolbuddy | 0 | 127,479,421 | 6% | ||
cwcost | 0 | -2,831,671,855 | -100% | ||
tipu | 0 | 7,089,563,257,679 | 10.02% | ||
majes.tytyty | 0 | 714,439,734 | 0.07% | ||
espoem | 0 | 11,726,333,295 | 5% | ||
godflesh | 0 | 0 | 10% | ||
qurator | 0 | 46,042,122,283 | 0.36% | ||
benadam | 0 | 44,248,227,876 | 100% | ||
captainklaus | 0 | 169,596,286,464 | 100% | ||
sharonomics | 0 | 170,973,163,627 | 100% | ||
che-shyr | 0 | 1,032,598,367 | 50% | ||
g10a | 0 | 2,762,892,239 | 10% | ||
kayceefresh | 0 | 2,613,336,213 | 72% | ||
tanvirsadatripon | 0 | 38,268,510 | 25% | ||
meetmysuperego | 0 | 68,913,634,237 | 50% | ||
qustodian | 0 | 1,145,300,291 | 0.36% | ||
elbrava | 0 | 3,378,331,083 | 60% | ||
phgnomo | 0 | 13,907,919,121 | 100% | ||
vvk | 0 | 22,764,729,320 | 100% | ||
stuffbyspencer | 0 | 9,909,555,223 | 100% | ||
davidamsterdam | 0 | 2,327,634,759 | 100% | ||
nealmcspadden | 0 | 99,065,021,570 | 25% | ||
mauialohabella | 0 | 4,070,547,485 | 100% | ||
mermaidvampire | 0 | 27,902,027,129 | 35% | ||
chrismadcboy2016 | 0 | 52,402,845,098 | 100% | ||
tobias-g | 0 | 134,948,947,562 | 31% | ||
zephalexia | 0 | 7,161,276,415 | 10% | ||
investprosper | 0 | 33,487,515,649 | 50% | ||
didic | 0 | 12,663,540,895 | 20% | ||
natha93 | 0 | 28,491,528,597 | 100% | ||
cadawg | 0 | 486,838,170,739 | 100% | ||
malia.mancianti | 0 | 2,600,852,396 | 100% | ||
fego | 0 | 10,275,549,236 | 7.01% | ||
j85063 | 0 | 29,094,424,549 | 15% | ||
abwasserrohr | 0 | 19,836,134,188 | 100% | ||
scottshots | 0 | 2,472,453,134 | 4% | ||
immanuel94 | 0 | 283,574,421,216 | 100% | ||
beleg | 0 | 4,567,234,279 | 10% | ||
phbr | 0 | 4,323,492,727 | 50% | ||
stmdev | 0 | 82,925,946 | 1% | ||
flyerchen | 0 | 10,211,562,931 | 100% | ||
skyroad | 0 | 10,773,539,019 | 100% | ||
statsexpert | 0 | 1,759,382,334 | 20% | ||
steemitachievers | 0 | 1,708,533,920 | 30% | ||
rollandthomas | 0 | 1,954,497,717 | 3% | ||
brainpod | 0 | 540,847,964 | 25% | ||
moserich | 0 | 11,332,379,078 | 100% | ||
camuel | 0 | 15,214,318,289 | 20% | ||
pavan26 | 0 | 22,351,616,638 | 100% | ||
sbi3 | 0 | 631,580,675,585 | 35.88% | ||
powerupsteem | 0 | 568,169,700 | 99% | ||
truthtrader | 0 | 6,894,831,633 | 50% | ||
therabbitzone | 0 | 539,190,992 | 50% | ||
trentox | 0 | 616,457,560 | 100% | ||
johndoer123 | 0 | 241,474,345,262 | 100% | ||
nfaith | 0 | 1,536,686,806 | 100% | ||
myxeno | 0 | 1,333,830,611 | 100% | ||
profitcheck | 0 | 1,705,240,299 | 100% | ||
arsadulislam | 0 | 240,280,082 | 37% | ||
daniostar | 0 | 21,881,908,805 | 24% | ||
tabassumusheer | 0 | 231,473,255 | 100% | ||
literaturkritik | 0 | 10,621,961,758 | 100% | ||
urdreamscometrue | 0 | 15,051,971,917 | 51% | ||
mightypanda | 0 | 4,619,249,883 | 7.01% | ||
doneliseo | 0 | 28,407,874 | 50% | ||
biox | 0 | 3,246,189,576 | 100% | ||
steem.craft | 0 | 23,576,557,065 | 100% | ||
zainenn | 0 | 12,364,684,068 | 10% | ||
randomkindness | 0 | 600,215,747 | 12.5% | ||
singhlakhbir | 0 | 162,068,839 | 100% | ||
cavampire | 0 | 624,060,102 | 20% | ||
dcooperation | 0 | 4,152,711,536 | 1% | ||
altonos | 0 | 3,989,608,580 | 20% | ||
definethedollar | 0 | 355,564,390,851 | 100% | ||
victorrain | 0 | 10,651,348 | 10% | ||
zeromile | 0 | 136,019,521 | 100% | ||
laissez-faire | 0 | 194,782,158 | 100% | ||
voter001 | 0 | 0 | 0.1% | ||
voter002 | 0 | 547,820,480 | 1.51% | ||
digno | 0 | 538,710,017 | 100% | ||
xias | 0 | 4,779,038,328 | 100% | ||
eva.bot | 0 | 543,435,017 | 100% | ||
agrow | 0 | 1,437,295,629 | 100% | ||
edryne678 | 0 | 21,133,742 | 20% | ||
florino | 0 | 996,767,569 | 17.5% | ||
theodosiskatq | 0 | 63,197,188 | 50% | ||
anmolwadbudhe | 0 | 64,790,749 | 100% | ||
anthive | 0 | 113,062,352 | 75% | ||
bluerobo | 0 | 33,034,191,767 | 100% | ||
knaveen | 0 | 718,453,006 | 100% | ||
steemclub-uk | 0 | 65,499,165,485 | 100% | ||
hanke | 0 | 4,300,329,386 | 100% | ||
german.news | 0 | 6,774,985,143 | 50% | ||
sadiyakhan069 | 0 | 497,663,581 | 100% | ||
arsd | 0 | 105,418,106 | 100% | ||
crazydaisy | 0 | 252,638,160 | 90% | ||
coredump | 0 | 96,444,804 | 3% | ||
megavest | 0 | 3,114,856,154 | 100% | ||
solairitas | 0 | 40,241,919,224 | 25% | ||
dtrade | 0 | 150,406,954 | 10% | ||
pearltwin | 0 | 4,270,277,581 | 100% | ||
haxxdump | 0 | 91,281,426 | 3% | ||
rull14958 | 0 | 2,665,303,148 | 100% | ||
tinyhousecryptos | 0 | 539,587,713 | 5% | ||
plankton.token | 0 | 35,645,998,157 | 35% | ||
plankton.bot | 0 | 1,576,910,777 | 100% | ||
budwizard | 0 | 10,957,439 | 1% | ||
map10k | 0 | 242,697,430 | 0.1% | ||
dalz1 | 0 | 696,579,246 | 50% | ||
actifitflyerchen | 0 | 541,372,538 | 100% | ||
blitzapi | 0 | 540,787,277 | 100% | ||
captain.palnet | 0 | 896,458,119 | 55% | ||
firealien | 0 | 48,241,853,680 | 100% | ||
abh12345.leo | 0 | 1,353,370,716 | 80% | ||
plook | 0 | 3,672,727,817 | 100% | ||
jk6276.leo | 0 | 589,968,920 | 10% | ||
leovoter | 0 | 779,636,466 | 65% | ||
mindtrap-leo | 0 | 1,346,452,087 | 30% | ||
jk6276.pal | 0 | 547,502,817 | 10% | ||
cn-leo | 0 | 115,094,274 | 2% | ||
ph1102.pal | 0 | 165,455,060 | 55% | ||
deathcross.leo | 0 | 620,250,638 | 100% | ||
mapxv | 0 | 12,220,841,569 | 1.51% | ||
roar2vote | 0 | 545,150,585 | 100% | ||
firealiean | 0 | 50,022,146,097 | 100% | ||
tomhall.leo | 0 | 504,657,672 | 100% | ||
hayalet | 0 | 7,362,314,127 | 100% | ||
dkatole | 0 | 473,304,265 | 100% | ||
spinvest-leo | 0 | 3,086,809,117 | 4% | ||
taverngames | 0 | 2,502,994,513 | 7.01% | ||
haylike | 0 | 227,151,809 | 100% | ||
martians | 0 | 542,658,054 | 100% | ||
mmoriarty | 0 | 311,370,035 | 100% | ||
dblogvoter | 0 | 80,344,213 | 1.95% | ||
chireerocks.leo | 0 | 246,739,091 | 100% | ||
hamsterpoweriii | 0 | 2,933,080,694 | 100% | ||
contrabot | 0 | 149,972,731 | 10% | ||
hive-122334 | 0 | 345,854,130 | 100% | ||
bilpcoinpower | 0 | 0 | 1% | ||
leomaniacsgr | 0 | 1,519,894,455 | 100% | ||
block.token | 0 | 2,615,282,936 | 50% | ||
bcm.leo | 0 | 31,242,583,466 | 100% | ||
solairibot | 0 | 18,169,646,732 | 25% | ||
zagorisioss | 0 | 607,944,490 | 100% | ||
aceh.point | 0 | 1,597,817,180 | 26% | ||
sky-999 | 0 | 0 | 100% | ||
tziagan | 0 | -4,766,157 | -10% | ||
ricolasco | 0 | -8,859,068 | -10% | ||
prestoretro | 0 | -8,859,068 | -10% |
<div class='pull-right'>https://cdn.steemitimages.com/DQmaHThyECGhEx8tSfHZbiMFRNYjJ35K92cDgiJjkzBUaJo/One%20sip%20of%20BEER%20for%20you.gif<p><sup><a href='https://steem-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p> Hey @cadawg, here is a little bit of <code>BEER</code> from @tsnaks for you. Enjoy it!</p> <p>Learn how to <a href='https://steemit.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn FREE BEER each day </a> by staking.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-what-is-softfork-0-22-2-a-dive-into-the-code-20200225t143609z |
category | hive-169321 |
json_metadata | "{"app": "beem/0.21.1"}" |
created | 2020-02-25 14:36:12 |
last_update | 2020-02-25 14:36:12 |
depth | 1 |
children | 0 |
last_payout | 2020-03-03 14:36:12 |
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 | 520 |
author_reputation | 25,764,988,873,156 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,817,108 |
net_rshares | 0 |
<div class='pull-right'>https://cdn.steemitimages.com/DQmaHThyECGhEx8tSfHZbiMFRNYjJ35K92cDgiJjkzBUaJo/One%20sip%20of%20BEER%20for%20you.gif<p><sup><a href='https://steem-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p> Hey @cadawg, here is a little bit of <code>BEER</code> from @eii for you. Enjoy it!</p> <p>Learn how to <a href='https://steemit.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn FREE BEER each day </a> by staking.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-what-is-softfork-0-22-2-a-dive-into-the-code-20200225t150914z |
category | hive-169321 |
json_metadata | "{"app": "beem/0.21.1"}" |
created | 2020-02-25 15:09:15 |
last_update | 2020-02-25 15:09:15 |
depth | 1 |
children | 0 |
last_payout | 2020-03-03 15:09:15 |
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 | 517 |
author_reputation | 25,764,988,873,156 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,817,965 |
net_rshares | 0 |
Tweet for #POSH https://twitter.com/_CADawg/status/1232229464052027392
author | cadawg |
---|---|
permlink | re-cadawg-q692hm |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.3"} |
created | 2020-02-25 09:03:24 |
last_update | 2020-02-25 09:03:24 |
depth | 1 |
children | 0 |
last_payout | 2020-03-03 09:03: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 | 100,771,927,095,688 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,808,378 |
net_rshares | 0 |
[](http://bit.ly/2YbNaET) Lucky you @cadawg here is your COFFEEA, view all your tokens at [steem-engine.com](https://steem-engine.com/) [Vote for c0ff33a as Witness](http://bit.ly/2YbNaET)
author | coffeea.token |
---|---|
permlink | re-what-is-softfork-0-22-2-a-dive-into-the-code-20200225t175115z |
category | hive-169321 |
json_metadata | "{"app": "beem/0.21.1"}" |
created | 2020-02-25 17:51:18 |
last_update | 2020-02-25 17:51:18 |
depth | 1 |
children | 0 |
last_payout | 2020-03-03 17:51: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 | 230 |
author_reputation | 4,292,084,626,291 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,822,244 |
net_rshares | 0 |
$trdo !DERANGED !COFFEEA
author | contrabot |
---|---|
permlink | re-what-is-softfork-0-22-2-a-dive-into-the-code-20200225t085623z |
category | hive-169321 |
json_metadata | "{"app": "rewarding/0.1.5"}" |
created | 2020-02-25 08:56:27 |
last_update | 2020-02-25 08:56:27 |
depth | 1 |
children | 1 |
last_payout | 2020-03-03 08:56:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 90,820,974,042 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,808,055 |
net_rshares | 3,561,731,374 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
coffeea.token | 0 | 2,463,118,557 | 5% | ||
deranged.coin | 0 | 1,098,612,817 | 3% |
Congratulations @contrabot, you successfuly trended the post shared by @cadawg! @cadawg will receive <b>0.94174650</b> [TRDO](https://steem-engine.com/?p=history&t=TRDO) & @contrabot will get <b>0.62783100</b> [TRDO](https://steem-engine.com/?p=history&t=TRDO) curation in 3 Days from Post Created Date! <b>"Call [TRDO](https://steem-engine.com/?p=history&t=TRDO), Your Comment Worth Something!"</b> --- <sup>To view or trade TRDO go to [steem-engine.com](https://steem-engine.com/?p=market&t=TRDO) Join [TRDO Discord Channel](https://discord.gg/wySP8T9) or Join [TRDO Web Site](http://www.trendotoken.info/)</sup>
author | trendotoken |
---|---|
permlink | re-contrabot-re-what-is-softfork-0-22-2-a-dive-into-the-code-20200225t085623z-20200225t085636278z |
category | hive-169321 |
json_metadata | {"tags":["comments-scot","trendo-bot"],"app":"comments-scot/1.1","format":"markdown"} |
created | 2020-02-25 08:56:36 |
last_update | 2020-02-25 08:56:36 |
depth | 2 |
children | 0 |
last_payout | 2020-03-03 08:56: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 | 616 |
author_reputation | 5,546,209,053,433 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,808,061 |
net_rshares | 0 |
So this is what robbery looks like in code. #whoknew
author | davedickeyyall |
---|---|
permlink | re-cadawg-q69mmr |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.4"} |
created | 2020-02-25 16:18:30 |
last_update | 2020-02-25 16:18:30 |
depth | 1 |
children | 1 |
last_payout | 2020-03-03 16:18: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 | 52 |
author_reputation | 900,337,707,143,075 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,819,838 |
net_rshares | 0 |
#idid lol jk I don't even write c++ but eh I did it, correctly I think? Glad I could shine a light on it for you!
author | cadawg |
---|---|
permlink | re-davedickeyyall-q69yoc |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.4"} |
created | 2020-02-25 20:38:33 |
last_update | 2020-02-25 20:38:33 |
depth | 2 |
children | 0 |
last_payout | 2020-03-03 20:38:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.011 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 114 |
author_reputation | 100,771,927,095,688 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,826,621 |
net_rshares | 147,395,553,391 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davedickeyyall | 0 | 147,395,553,391 | 12% |
You just received DERANGED @cadawg Keep up the great work. Congrats, you have been gifted 1 DerangedCoin. You can redeem 20 of them for an upvote from the deranged.coin account. Redeem your tokens by sending to deranged.coin through Steem Engine with your post URL in the memo field, view all your tokens at [steem-engine.com](https://steem-engine.com/)
author | deranged.coin |
---|---|
permlink | re-what-is-softfork-0-22-2-a-dive-into-the-code-20200225t085642z |
category | hive-169321 |
json_metadata | "{"app": "beem/0.21.1"}" |
created | 2020-02-25 08:56:42 |
last_update | 2020-02-25 08:56:42 |
depth | 1 |
children | 0 |
last_payout | 2020-03-03 08:56:42 |
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 | 355 |
author_reputation | 583,963,996,589 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,808,068 |
net_rshares | 0 |
!BEER for you
author | eii |
---|---|
permlink | re-cadawg-q69jf2 |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.4"} |
created | 2020-02-25 15:09:00 |
last_update | 2020-02-25 15:09:00 |
depth | 1 |
children | 1 |
last_payout | 2020-03-03 15:09: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 | 13 |
author_reputation | 181,049,011,897,247 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,817,960 |
net_rshares | 0 |
Thanks!
author | cadawg |
---|---|
permlink | re-eii-q69kiv |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.4"} |
created | 2020-02-25 15:32:57 |
last_update | 2020-02-25 15:32:57 |
depth | 2 |
children | 0 |
last_payout | 2020-03-03 15:32: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 | 7 |
author_reputation | 100,771,927,095,688 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,818,578 |
net_rshares | 0 |
Wait, we can power down to other account? How can I do that? What tools can I use? Also why is power up transaction also get blocked?
author | fsm-liquid |
---|---|
permlink | re-cadawg-q694y8 |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.3"} |
created | 2020-02-25 09:56:42 |
last_update | 2020-02-25 09:56:42 |
depth | 1 |
children | 5 |
last_payout | 2020-03-03 09:56:42 |
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 | 134 |
author_reputation | 365,976,853,407 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,809,958 |
net_rshares | 0 |
1) SteemWorld -> Outgoing routes in balances tab ( https://steemworld.org/@fsm-liquid )  2) You can power up another account, so they could move funds that way.
author | cadawg |
---|---|
permlink | re-fsm-liquid-q695nb |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.3"} |
created | 2020-02-25 10:11:36 |
last_update | 2020-02-25 10:11:36 |
depth | 2 |
children | 4 |
last_payout | 2020-03-03 10:11: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 | 243 |
author_reputation | 100,771,927,095,688 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,810,216 |
net_rshares | 4,850,018,766 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stuffbyspencer | 0 | 4,850,018,766 | 50.2% |
1. Thanks a lot! 2. But it will be locked up for 13 weeks and visible on the chain though. Wow the witnesses really don't want Steemit to move funds at all.
author | fsm-liquid |
---|---|
permlink | re-cadawg-q697yr |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.3"} |
created | 2020-02-25 11:01:42 |
last_update | 2020-02-25 11:01:42 |
depth | 3 |
children | 3 |
last_payout | 2020-03-03 11:01:42 |
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 | 156 |
author_reputation | 365,976,853,407 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,811,214 |
net_rshares | 0 |
Nice to see the set rules in raw form but only understood a few.
author | kayceefresh |
---|---|
permlink | re-cadawg-q6flm0 |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.5"} |
created | 2020-02-28 21:42:03 |
last_update | 2020-02-28 21:42:03 |
depth | 1 |
children | 1 |
last_payout | 2020-03-06 21:42: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 | 65 |
author_reputation | 3,650,078,565,827 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,920,569 |
net_rshares | -26,004,414,118 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mack-bot | 0 | -26,004,414,118 | -0.25% |
<em>Nice to see the set Rules in raw form but only Understood a few. </em> <sup>- kayceefresh</sup> --- <sup><sup><em>I'm a bot. I detect haiku.</em></sup></sup>
author | haikubot |
---|---|
permlink | 20200228t214209414z |
category | hive-169321 |
json_metadata | {"tags":["test"],"app":"steemjs/examples"} |
created | 2020-02-28 21:42:09 |
last_update | 2020-02-28 21:42:09 |
depth | 2 |
children | 0 |
last_payout | 2020-03-06 21:42: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 | 267 |
author_reputation | 1,821,968,927,944 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,920,570 |
net_rshares | 0 |
Damn, pretty tight restrictions. Thanks for the nice breakdown! I'm curious though... What actions are left ( *besides posting* ) **are** they allowed to do? Just talk & sign messages? I guess send custom json as well, right? ( *maybe Justin can still play splinterlands lol* )
author | stuffbyspencer | ||||||
---|---|---|---|---|---|---|---|
permlink | re-cadawg-2020226t03126708z | ||||||
category | hive-169321 | ||||||
json_metadata | {"tags":["programming","steem","softfork","oc","posh","steemleo","palnet","neoxian","marlians","bilpcoin"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2020-02-26 05:31:27 | ||||||
last_update | 2020-02-26 05:31:27 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2020-03-04 05:31:27 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 277 | ||||||
author_reputation | 13,003,870,677,623 | ||||||
root_title | "What is SoftFork 0.22.2? A dive into the code" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 95,836,358 | ||||||
net_rshares | 0 |
Yeah, anything that isn't directly transferring value/using SP, i.e. custom_json's are allowed, therefore they can use SE and SplinterLands (if they could transfer money to buy packs... lol)
author | cadawg |
---|---|
permlink | re-stuffbyspencer-q6auur |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.4"} |
created | 2020-02-26 08:13:45 |
last_update | 2020-02-26 08:13:45 |
depth | 2 |
children | 0 |
last_payout | 2020-03-04 08:13:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 190 |
author_reputation | 100,771,927,095,688 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,839,798 |
net_rshares | 149,834,339,515 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stuffbyspencer | 0 | 6,803,598,922 | 76% | ||
dustsweeper | 0 | 143,030,740,593 | 23.76% |
Congratulations @cadawg, your post successfully recieved <b>0.9417465</b> [TRDO](https://steem-engine.com/?p=history&t=TRDO) from below listed TRENDO callers:<br> > <sup>@contrabot earned : **0.627831** [TRDO](https://steem-engine.com/?p=history&t=TRDO) curation</sup> --- <sup>To view or trade TRDO go to [steem-engine.com](https://steem-engine.com/?p=market&t=TRDO) Join [TRDO Discord Channel](https://discord.gg/wySP8T9) or Join [TRDO Web Site](http://www.trendotoken.info/)</sup>
author | trendotoken |
---|---|
permlink | re-cadawg-what-is-softfork-0-22-2-a-dive-into-the-code-20200228t085109165z |
category | hive-169321 |
json_metadata | {"tags":["trdo","trendo-bot"],"app":"comments-scot/1.1","format":"markdown"} |
created | 2020-02-28 08:51:15 |
last_update | 2020-02-28 08:51:15 |
depth | 1 |
children | 0 |
last_payout | 2020-03-06 08:51:15 |
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 | 486 |
author_reputation | 5,546,209,053,433 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,902,609 |
net_rshares | 0 |
!BEER
author | tsnaks |
---|---|
permlink | re-cadawg-q69hvu |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.4"} |
created | 2020-02-25 14:35:54 |
last_update | 2020-02-25 14:35:54 |
depth | 1 |
children | 1 |
last_payout | 2020-03-03 14:35: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 | 5 |
author_reputation | 64,922,988,111,178 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,817,102 |
net_rshares | 0 |
Thanks snaks man!
author | cadawg |
---|---|
permlink | re-tsnaks-q69j4m |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.4"} |
created | 2020-02-25 15:02:48 |
last_update | 2020-02-25 15:02:48 |
depth | 2 |
children | 0 |
last_payout | 2020-03-03 15:02:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 100,771,927,095,688 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,817,827 |
net_rshares | 0 |
Thanks for the share, though it still sounds strange for some of us. Posted via <a href="https://steemleo.com/">Steemleo</a>
author | uyobong |
---|---|
permlink | q6b4mr |
category | hive-169321 |
json_metadata | {"tags":["hive-169321","steemleo"],"app":"steemleo/0.1","canonical_url":"https://www.steemleo.com/@uyobong/q6b4mr"} |
created | 2020-02-26 11:44:51 |
last_update | 2020-02-26 11:44:51 |
depth | 1 |
children | 1 |
last_payout | 2020-03-04 11:44: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 | 125 |
author_reputation | 925,748,065,765,268 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,845,791 |
net_rshares | 94,906,985 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
leo.curator | 0 | 94,906,985 | 4% |
Yeah, that's understandable.
author | cadawg |
---|---|
permlink | re-uyobong-q6b50j |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"steempeak/2020.02.4"} |
created | 2020-02-26 11:53:12 |
last_update | 2020-02-26 11:53:12 |
depth | 2 |
children | 0 |
last_payout | 2020-03-04 11:53:12 |
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 | 28 |
author_reputation | 100,771,927,095,688 |
root_title | "What is SoftFork 0.22.2? A dive into the code" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,846,040 |
net_rshares | 0 |