create account

Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc by blockchainstudio

View this thread on: hive.blogpeakd.comecency.com
· @blockchainstudio · (edited)
$6.66
Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc
#### Repository
https://github.com/busyorg/busy

3 new feature and 2 fixes for Busy.

**Note**: for comments, I followed the PO's comment practice. Comments were rarely used in the original code, so I only made a comment when it's really needed. In addition, I wrote the details in  commit/issue/PR.

### New Features
#### Powerdown information
https://github.com/busyorg/busy/pull/2147

- Show the powerdown amount in the wallet
- Show the tooltip with next powerdown schedule

Previously, Busy doesn't show any powerdown information in the wallet.


![](https://ipfs.busy.org/ipfs/Qmf1qRMhNrpWzoFdV9ZYJiAe7DTwthJnVdvsJse5i5oZz2)
> Before: **Busy shows nothing!**

![](https://ipfs.busy.org/ipfs/QmXA7cJEUNADju9qjmuFaousDm8kFRtpC6TpQ81K82rqKW)
> After: Busy shows both powerdown and delegation in a compact form.

```
const getFormattedPendingWithdrawalSP = (user, totalVestingShares, totalVestingFundSteem) => {
  const pendingWithdrawalSP = calculatePendingWithdrawalSP(
    user,
    totalVestingShares,
    totalVestingFundSteem,
  );

  if (pendingWithdrawalSP !== 0) {
    return (
      <BTooltip
        title={
          <span>
            <FormattedMessage
              id="steem_power_pending_withdrawal_tooltip"
              defaultMessage="The next power down is scheduled to happen on "
            />
            <FormattedDate value={`${user.next_vesting_withdrawal}Z`} />{' '}
            <FormattedTime value={`${user.next_vesting_withdrawal}Z`} />
          </span>
        }
      >
        <span>
          {' - '}
          <FormattedNumber value={pendingWithdrawalSP} />
        </span>
      </BTooltip>
    );
  }
```
> https://github.com/busyorg/busy/pull/2147/commits/0f8419ea58204e5bfd18443832e0367543d36605#diff-12b05106e0ae36b4c39ad614cc8dda47R48

Note: Probably the more important thing about this powerdown is the powerdown amount should be excluded for voting value calculations. Many UIs had/have such bugs. I've fixed some on my own.

##### Benefits
1. Hacking prevention
There are many cases where hackers start the powerdown and victims even don't recognize it! If the information is properly shown, this hacking can be prevented.

2. Vote value consistency
Powerdown amount is excluded for vote value, but without powerdown amount information, users may wonder why their vote value is quite low. Note that around the end of 13 weeks of powerdown, the difference can be huge.

3. Stopping powerdown
Users may change their mind to stop the powerdown if the information is clearly shown everyday. Especially when it's almost done, the powerdown amount can be quite big compared to the remaining so the chance of changing their mind might be pretty high :)

#### Show zero payout
https://github.com/busyorg/busy/pull/2174

- Show ~~$0.00~~ for payout-declined post all the time
- Show $0.00 or ~~$0.00~~ depending on the declined status even for posts with pending payout lower than $0.005.

![](https://cdn.steemitimages.com/DQmQEP9M8ef7Gc6kJ8j5AdAdSmh9BiFF6jwpgQrdXHYRSD2/Screen%20Shot%202019-01-28%20at%203.50.20%20PM.png)
> Before: Busy shows nothing when payout is zero. So it's hard to tell whether it's due to downvoting or decline.

![](https://cdn.steemitimages.com/DQmafbeeHfzq1q3JTW6CJNiriKYAg5Cmh8jgqAzPgcammZq/Screen%20Shot%202019-01-28%20at%205.46.20%20PM.png)
> After: Busy shows it as ~~$0.00~~ for both posts just posted and paid out.
> https://github.com/busyorg/busy/pull/2174/commits/2a52cbc59776a4763d4b3c54017d9f734409733e#diff-63ae944f92a07351d09d0b828b70223eR16

##### Benefits
- For a payout-declined post, you can easily tell if it's declined or not in the beginning
- When a post is paid out with $0, you can easily tell if it was due to decline or downvoting. (But maybe due to both :)
- Easy to understand for newbies. Newbie may not even understand why some post is paid out with zero.

#### 3-digit precision for small values of votings
https://github.com/busyorg/busy/pull/2176
- 3-digit precision when 0 < abs(STU) < $0.02

Currently, Busy shows only up to 2-digit precision, while SBD has 3-digit precision.

This might be an aesthetical choice. While many people like 3-digit on Steempeak, for instance, I still prefer 2-digit when the amount is large enough. But currently $0.01 needs a full voting with about 500 SP, which means even $0.005 needs 250 SP. As you know, most newbies are much below than that. Their voting always marks as $0.00 **which can't be a good user experience**.

##### Why $0.02?
This is not a random pick, but related to dust payout threshold (STEEM_MIN_PAYOUT_SBD), if payout is less than $0.02, it is not actually paid out. It just disappears! See my Utopian post for more details:  [Effect of haircut, early voting, beneficiary on dust payout](https://steemit.com/@blockchainstudio/effect-of-haircut-early-voting-beneficiary-on-dust-payout)

But still 0 is better to be shown as $0.00 instead of $0.000. That's why 3-digit precision when 0 < abs(STU) < $0.02, 2-dight precision otherwise, which made the following final decision:

```
const USDDisplay = ({ value }) => {
  const negative = value < 0;
  const absValue = Math.abs(value);
  // 0.02 is dust payout threshold (STEEM_MIN_PAYOUT_SBD)
  const precision = absValue < 0.02 && value > 0 ? 3 : 2;
  return (
    <span>
      {negative && '-'}
      {'$'}
      <FormattedNumber
        value={absValue}
        minimumFractionDigits={precision}
        maximumFractionDigits={precision}
      />
    </span>
  );
};
```
> https://github.com/busyorg/busy/pull/2176/files/ac56c90e8f89470303b56d56cf650174cd5acc80#diff-29f54067f30b79acefc4a03bb52b3acdR9

Note: See the bug fix "Remove `US` from `US$` in non-English locales" for the reason why `style={'currency'}` is avoided.

![](https://cdn.steemitimages.com/DQmfYm6pZ5MjMWQReh7iaM1M8acMUDTjEzStPLStT17VXzS)
> before

![](https://cdn.steemitimages.com/DQmabD6eXc91JXZUHWrczTRX2uTwPYVktCpwBSroSBQrYdE)
> after

![](https://cdn.steemitimages.com/DQmQ6KGnmd9xypasiZEFguxuDW2mCrkoHA6Nxdd6zfUDJ8Q)
> but still 2-digit for >= $0.02, which is better aesthetically :)

![](https://cdn.steemitimages.com/DQmWC6GSECYdmznQHV6H94pnyWKJxvkURCHvr5mhFVnMPTJ)
> voting details

![](https://user-images.githubusercontent.com/38183982/52051714-3943d600-254c-11e9-94f6-1f5a7be59887.png)
> voting details for downvoting

### Bug Fixes
#### Remove `US` from `US$` in non-English locales
This is a common mistake in using `FormattedNumber`.

```
<FormattedNumber
  value={value}
  style={'currency'}
  currency={'USD'}
  currencyDisplay={'symbol'}
/>
```
> This show `US$` instead of `$` in non-en locales as below,

![](https://user-images.githubusercontent.com/38183982/52060426-17eee400-2564-11e9-9c13-df1cb5c4f960.png)
> before

Thus, it should be wrapped with en locale
```
<IntlProvider locale='en'>
  <FormattedNumber
    value={value}
    style={'currency'}
    currency={'USD'}
    currencyDisplay={'symbol'}
    minimumFractionDigits={precision}
    maximumFractionDigits={precision}
  />
</IntlProvider>
```

![](https://user-images.githubusercontent.com/38183982/52061946-723d7400-2567-11e9-8938-998dfdc040ac.png)
> after

While this resolves the problem, `lint` will complain about the code. See a walk-around, e.g, https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/style-prop-object.md). But for vote detail list, this way may lead to slow performance, it's better to be handled by `USDDisplay` class in the above.

#### Fix no negative sign for small values
https://github.com/busyorg/busy/pull/2176

Previously there was no - sign for small negative values, i.e., no way to tell if it's + or -.

#### GitHub Account
https://github.com/economicstudio
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 10 others
properties (23)
authorblockchainstudio
permlinkbusy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io","development","busy","kr-dev","jjangjjangman"],"users":["blockchainstudio"],"links":["https://github.com/busyorg/busy","https://github.com/busyorg/busy/pull/2147","https://github.com/busyorg/busy/pull/2147/commits/0f8419ea58204e5bfd18443832e0367543d36605#diff-12b05106e0ae36b4c39ad614cc8dda47R48","https://github.com/busyorg/busy/pull/2174","https://github.com/busyorg/busy/pull/2174/commits/2a52cbc59776a4763d4b3c54017d9f734409733e#diff-63ae944f92a07351d09d0b828b70223eR16","https://github.com/busyorg/busy/pull/2176","https://steemit.com/@blockchainstudio/effect-of-haircut-early-voting-beneficiary-on-dust-payout","https://github.com/busyorg/busy/pull/2176/files/ac56c90e8f89470303b56d56cf650174cd5acc80#diff-29f54067f30b79acefc4a03bb52b3acdR9","https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/style-prop-object.md","https://github.com/busyorg/busy/pull/2176"],"image":["https://ipfs.busy.org/ipfs/Qmf1qRMhNrpWzoFdV9ZYJiAe7DTwthJnVdvsJse5i5oZz2","https://ipfs.busy.org/ipfs/QmXA7cJEUNADju9qjmuFaousDm8kFRtpC6TpQ81K82rqKW","https://cdn.steemitimages.com/DQmQEP9M8ef7Gc6kJ8j5AdAdSmh9BiFF6jwpgQrdXHYRSD2/Screen%20Shot%202019-01-28%20at%203.50.20%20PM.png","https://cdn.steemitimages.com/DQmafbeeHfzq1q3JTW6CJNiriKYAg5Cmh8jgqAzPgcammZq/Screen%20Shot%202019-01-28%20at%205.46.20%20PM.png","https://cdn.steemitimages.com/DQmfYm6pZ5MjMWQReh7iaM1M8acMUDTjEzStPLStT17VXzS","https://cdn.steemitimages.com/DQmabD6eXc91JXZUHWrczTRX2uTwPYVktCpwBSroSBQrYdE","https://cdn.steemitimages.com/DQmQ6KGnmd9xypasiZEFguxuDW2mCrkoHA6Nxdd6zfUDJ8Q","https://cdn.steemitimages.com/DQmWC6GSECYdmznQHV6H94pnyWKJxvkURCHvr5mhFVnMPTJ","https://user-images.githubusercontent.com/38183982/52051714-3943d600-254c-11e9-94f6-1f5a7be59887.png","https://user-images.githubusercontent.com/38183982/52060426-17eee400-2564-11e9-9c13-df1cb5c4f960.png","https://user-images.githubusercontent.com/38183982/52061946-723d7400-2567-11e9-8938-998dfdc040ac.png"]}
created2019-02-01 14:48:21
last_update2019-02-06 10:07:09
depth0
children14
last_payout2019-02-08 14:48:21
cashout_time1969-12-31 23:59:59
total_payout_value5.086 HBD
curator_payout_value1.575 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,672
author_reputation178,988,499,015,921
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries
0.
accountutopian.pay
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,259,145
net_rshares14,576,921,504,541
author_curate_reward""
vote details (74)
@blockchainstudio · (edited)
$0.05
In Korean: ํ˜„์žฌ๊นŒ์ง€ ์ œ๊ฐ€ ์ง์ ‘ ๊ตฌํ˜„/์ˆ˜์ •ํ•ด์„œ Busy ๋ฒ ํƒ€๋ฒ„์ „์— ๋“ฑ๋ก์™„๋ฃŒ๋œ ๊ฒƒ๋“ค ๋ชจ์Œ 2๋ฒˆ์งธ์ž…๋‹ˆ๋‹ค. https://staging.busy.org ๋กœ ์ ‘์†ํ•˜์‹œ๋ฉด ์ง€๊ธˆ๋„ ์‚ฌ์šฉ๊ฐ€๋Šฅํ•ฉ๋‹ˆ๋‹ค. ๋งŽ์€ ๋ถ€๋ถ„ ์ด์ „ ์ œ์•ˆ์„œ์—์„œ ๋ณด์…จ๋˜ ๋‚ด์šฉ์ž…๋‹ˆ๋‹ค.

- ํŒŒ์›Œ๋‹ค์šด ์ •๋ณด
- ์ž‘์€ ๊ธˆ์•ก 3์ž๋ฆฌ ํ‘œ์‹œ! ์•„๋งˆ ๋งŽ์€ ๋ถ„๋“ค๊ป˜์„œ ์›ํ•˜์‹œ๋˜ ๊ธฐ๋Šฅ์ผ๋“ฏ. ๊ณฐ๋Œ์ด์—์„œ๋„ ์‚ฌ์šฉ๋˜๋Š” ๊ธˆ์•ก์ด๊ธฐ๋„ํ•œ $0.02 ๋ณด๋‹ค ์ž‘์œผ๋ฉด 3์ž๋ฆฌ๋กœ ๊ทธ๋ณด๋‹ค ํฌ๋ฉด 2์ž๋ฆฌ๋กœ ๋ณด์—ฌ์ค๋‹ˆ๋‹ค. ๋ฌด์กฐ๊ฑด 3์ž๋ฆฌ๋Š” ๋ณ„๋กœ ์•ˆ์˜ˆ์œ ๊ฒƒ ๊ฐ™์•„์„œ์š”.
- ๊ธˆ์•ก์ด 0์ผ ๋•Œ๋„ ๋ณด์—ฌ์ค˜์„œ decline์ด๋ผ์„œ ๊ทธ๋Ÿฐ์ง€ ๋‹ค์šด๋ณดํŒ…๋•Œ๋ฌธ์ธ์ง€ ๊ตฌ๋ณ„๋˜๊ฒŒ ํ–ˆ์Šต๋‹ˆ๋‹ค.

ps. ์œ ํ† ํ”ผ์•ˆ ์ œ์•ˆ ๋ถ€๋ฌธ 1์›” 1๋“ฑํ•ด์„œ ์ƒ๊ธˆ 10์ŠคํŒ€ ๋ฐ›์•˜์Šต๋‹ˆ๋‹ค^^ https://steemit.com/utopian-io/@favcau/suggestions-category-weekly-report-15
์œ ํ† ํ”ผ์•ˆ ๊ณต์‹ ํ–‰์‚ฌ๋Š” ์•„๋‹ˆ๊ณ  ์ œ์•ˆ ๋ถ€๋ฌธ ๋ชจ๋”๋ ˆ์ดํ„ฐ ์ค‘์˜ ํ•œ๋ช…์ธ favcau๊ฐ€ ๊ฐœ์ธ์ ์œผ๋กœ ์ง„ํ–‰ํ•˜๋Š” ํ–‰์‚ฌ์ž…๋‹ˆ๋‹ค. ์œ ํ† ํ”ผ์•ˆ ๋ณดํŒ…์ด ์›Œ๋‚™ ๋†’์œผ๋‹ˆ ์ƒ๊ธˆ 10์ŠคํŒ€์ด ์ •๋ง ์ž‘๊ฒŒ ๋А๊ปด์ง€๊ธดํ•˜์ง€๋งŒ ๊ฐœ์ธ์ ์œผ๋กœ ์ œ์•ˆ ์นดํ…Œ๊ณ ๋ฆฌ๋ฅผ ์ข‹์•„ํ•ด์„œ ๊ธฐ๋…์œผ๋กœ ๋ฆฌ์ŠคํŒ€๊นŒ์ง€ ํ–ˆ์Šต๋‹ˆ๋‹ค. (๋ฒ„๊ทธ ์นดํ…Œ๊ณ ๋ฆฌ๋Š” ์ด๋ฏธ ๋‘๋ฒˆ ์ฃผ๊ฐ„ 1์œ„๋ฅผ ํ•œ ์ ์ด ์žˆ์Šต๋‹ˆ๋‹ค. ์›๋ž˜๋Š” weekly report๋‚˜์˜ค๋Š”๊ฑฐ์— ๋งž์ถฐ ์ฃผ๊ฐ„์ด ๋์ž…๋‹ˆ๋‹ค.) ๋‹จ์ง€ ์ŠคํŒ€์ž‡์ด ์—ฌ๋Ÿฌ ์ œ์•ˆ๋“ค์„ ์ž˜ ๊ฒ€ํ† ํ•˜๊ณ  ๋ฐ˜์˜ํ•ด์คฌ์œผ๋ฉด ์ข‹๊ฒ ๋„ค์š”. ์ตœ๊ทผ ํ•œ์ˆจ๋Œ๋ ธ๋‹ค ์ƒ๊ฐํ•˜๋Š”์ง€ ๋‹ค์‹œ ๋ถ€์‹คํ•ด์ง„ ๋А๋‚Œ์ž…๋‹ˆ๋‹ค.

์•„๋ฌดํŠผ ์˜์–ด๋งŒ ์กฐ๊ธˆ ๋˜์‹œ๋ฉด ๋ฒ„๊ทธ๋ฆฌํฌํŠธ์™€ ์ œ์•ˆ ์นดํ…Œ๊ณ ๋ฆฌ๋Š” ์–‘์งˆ์˜ ํฌ์ŠคํŒ…์€ ์—ฌ์ „ํžˆ ๋ณ„๊ฐœ์˜ ๋ฌธ์ œ์ด์ง€๋งŒ ๊ธฐ๋ณธ์ ์œผ๋กœ ํฌ์ŠคํŒ…ํ•˜๋Š” ๊ฒƒ ์ž์ฒด๋Š” ์‰ฝ๋‹ค๊ณ  ์ƒ๊ฐํ•ฉ๋‹ˆ๋‹ค. ๋ณด์ƒ๋•Œ๋ฌธ์ด ์•„๋‹ˆ๋ผ ์ข‹์€ ์•„์ด๋””์–ด ์žˆ์œผ์‹  ๋ถ„๋“ค์€ ๊ผญ ๋„์ „ํ•ด๋ณด์„ธ์š”~ ๋ฒ„๊ทธ๋„ ๋ฆฌํฌํŠธํ•ด๋†“์œผ๋ฉด ๋ฏผ๋งํ•ด์„œ๋ผ๋„ ๋นจ๋ฆฌ ๊ณ ์น˜๋Š”๊ฒŒ ์กฐ๊ธˆ์ด๋ผ๋„ ๋„์›€๋  ๊ฑฐ์—์š”.

ps2. ์ข€์ „์— ๋ฆฌ๋ทฐ์–ด๊ฐ€ ๋ช‡๋ช‡ ์Šคํƒ€์ผ์— ๋Œ€ํ•ด์„œ ์–ธ๊ธ‰์„ ํ•ด๋†จ๋„ค์š”. ์ƒ๋Œ€์ ์œผ๋กœ ์ƒ๋‹นํžˆ ๊ผผ๊ผผํ•œ ๋ฆฌ๋ทฐ์— ์šฐ์„  ๊ณ ๋งˆ์šด ๋งˆ์Œ์ด ๋“ญ๋‹ˆ๋‹ค. ๊ทธ๋Ÿฐ๋ฐ ์ด์ „ ์ฒซ๋ฒˆ์งธ dev๊ธ€์˜ ์ฃผ์„ํ•ญ๋ชฉ(ํ‰๊ฐ€์š”์†Œ์ค‘ํ•˜๋‚˜) ์—ญ์‹œ ์›๋ž˜ ์ฝ”๋“œ๋“ค์ด ์ฃผ์„์„ ํ•˜๋‚˜๋„ ์•ˆ๋‹ค๋Š” ์Šคํƒ€์ผ์ธ๋ฐ ์ €ํ˜ผ์ž ๋‹ฌ๊ธฐ๋„ ๋ญํ•ด์„œ(์‚ฌ์‹ค ์ด๋ถ€๋ถ„์ด ์š”์ƒˆ ๊นƒํ—ˆ๋ธŒ๊ฐ™์€ ์‹œ์Šคํ…œ์ด ์ž˜๋˜์–ด์žˆ์–ด์„œ ๊ตณ์ด ์ฝ”๋“œ์— ์ฃผ์„์„ ๋งŽ์ด ์•ˆ๋‹ค๋Š” ๊ฒฝํ–ฅ์ด ์ƒ๊ธฐ๊ณ  ์žˆ์ฃ ) ์•ˆ ๋‹จ๊ฑด๋ฐ ๊ทธ๊ฒฝ์šฐ ํ‰๊ฐ€์—์„œ ๊ฐ์ ์š”์ธ์ด ๋  ์ˆ˜ ๋ฐ–์— ์—†๋Š”๊ฒƒ์ด ๋ณดํŒ… ๊ธˆ์•ก์ด ๋ฌธ์ œ๊ฐ€ ์•„๋‹ˆ๋ผ ๊ธฐ๋ถ„์ด ์•ˆ์ข‹์„์ˆ˜์žˆ์ฃ ^^ ๊ทธ๋ž˜์„œ ๊ทธ ๋ถ€๋ถ„์€ ์ด๋ฒˆ์— ์จ๋†จ๋Š”๋ฐ ๋˜๋‹ค๋ฅธ ์ฝ”๋”ฉ ์Šคํƒ€์ผ์— ๋Œ€ํ•ด์„œ ์ง€์ ํ•œ ๋ถ€๋ถ„๋„ ์žˆ๋„ค์š”. ์ด ๋ถ€๋ถ„์—ญ์‹œ ๊ทธ๊ฒŒ ์ œ๊ฐ€ ์“ฐ๊ณ  ์‹ถ์€ ์Šคํƒ€์ผ์ด ์•„๋‹ˆ๋ผ Busy์˜ ์Šคํƒ€์ผ์„ ์ตœ๋Œ€ํ•œ ์กด์ค‘ํ•ด์ค€ ๊ฒƒ์ธ๋ฐ ์ด๋Ÿฐ ๋ถ€๋ถ„์€ ์™ธ๋ถ€ ๊ธฐ์—ฌ์ž๋กœ์จ ์–ด์ฉ” ์ˆ˜ ์—†๋Š” ๋ถ€๋ถ„ ๊ฐ™์Šต๋‹ˆ๋‹ค^^ ํ‰๊ฐ€๋ผ๋Š” ๊ฒƒ์ด ์ฐธ ์‹ ๊ฒฝ์„ ์•ˆ์“ฐ๋ฉด์„œ๋„ ์‹ ๊ฒฝ์„ ์ „ํ˜€ ์•ˆ์“ธ์ˆ˜๋Š” ์—†๋Š” ๊ฒƒ์ด ์‚ฌ๋žŒ ์‹ฌ๋ฆฌ๊ฐ™๋„ค์š”^^ ๋” ์ฟจํ•ด์งˆ ์ˆ˜ ์žˆ๋„๋ก ๋…ธ๋ ฅํ•˜๊ฒ ์Šต๋‹ˆ๋‹คใ…Žใ…Ž ์‚ฌ์‹ค ๋ฆฌ๋ทฐ์–ด๋„ ์•Œ๋ฉด์„œ๋„ ํ‰๊ฐ€๋ฅผ ํ•˜๊ธดํ•ด์•ผํ•˜๋‹ˆ ์–ด์ฉ” ์ˆ˜ ์—†์„๋“ฏ.
๐Ÿ‘  
properties (23)
authorblockchainstudio
permlinkre-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190201t145419844z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["favcau"],"links":["https://staging.busy.org","https://steemit.com/utopian-io/@favcau/suggestions-category-weekly-report-15"],"image":[]}
created2019-02-01 14:51:51
last_update2019-02-02 13:04:54
depth1
children4
last_payout2019-02-08 14:51:51
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,368
author_reputation178,988,499,015,921
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,259,255
net_rshares94,759,250,889
author_curate_reward""
vote details (1)
@anpigon ·
$0.02
๊ธˆ์•ก ์†Œ์ˆ˜์  3์ž๋ฆฌ ํ‘œ์‹œ๋Š” ์ •๋ง ์ข‹์€ ์•„์ด๋””์–ด์ž…๋‹ˆ๋‹ค. ๊ทธ๋ฆฌ๊ณ  ๊นƒํ—ˆ๋ธŒ์— ํ™œ๋™ํ•œ ๋‚ด์—ญ์„ ์‚ดํŽด๋ณด๋‹ˆ ์ €๋ณด๋‹ค ์ฝ”๋”ฉ ์‹ค๋ ฅ์ด ํ›จ์”ฌ ์ข‹๋„ค์š”. ๊ทธ์ € ๋†€๋ž์Šต๋‹ˆ๋‹ค.
๐Ÿ‘  ,
properties (23)
authoranpigon
permlinkre-blockchainstudio-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190203t014231246z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2019-02-03 01:42:33
last_update2019-02-03 01:42:33
depth2
children3
last_payout2019-02-10 01:42:33
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation17,258,940,000,931
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,322,343
net_rshares48,108,507,830
author_curate_reward""
vote details (2)
@blockchainstudio ·
์—์ด ๋ฌด์Šจ ๊ทธ๋Ÿฐ ๋ง์”€์„ใ…Žใ…Ž ํ˜น์‹œ๋‚˜ ์ข‹์•„๋ณด์ด๋ฉด ๊ทธ๊ฑด ์›๋ž˜ ์ฝ”๋“œ๊ฐ€ ๊น”๋”ํ•œ๊ฑฐ์— ์ œ๊ฐ€ ๋ง๋ถ™์ธ๊ฑธ๊ฑฐ๊ณ  ๋ชจ์ž๋ž€ ๋ถ€๋ถ„์žˆ์œผ๋ฉด ์ œํƒ“์ผ ๊ฑฐ์—์š”. ๊ทธ ๋ฐ˜๋Œ€๋„ ์žˆ๊ฒ ์ง€๋งŒใ…Žใ…Ž ์•„๋ฌด๋ž˜๋„ ๋‚จ์˜ ๊ฑฐ๋‹ค๋ณด๋‹ˆ ํ™•๋ฐ”๊พธ๊ธฐ๋„ ๊ทธ๋ ‡๊ณ  ์ข€ ๊ทธ๋Ÿฐ ๋ถ€๋ถ„์ด ์žˆ๋„ค์š”.

์ œ๊ฐ€ ํ”„๋ก ํŠธ์—”๋“œ์ชฝ์€ ์ •๋ง ๊ธฐ์ดˆ๋ง๊ณ ๋Š” ์ž˜ ๋ชฐ๋ผ์„œ ์ฒ˜์Œ์—” ์ •๋ง ๋‹จ์ˆœํ•œ๊ฑฐ์—์„œ ์‹œ๊ฐ„์ด ์ œ๋ฒ• ๋งŽ์ด ๊ฑธ๋ ธ์—ˆ๋„ค์š”. ์ง€๊ธˆ๋„ ์ œ๋Œ€๋กœ ์ดํ•ดํ•˜๊ณ  ํ•˜๊ธฐ๋ณด๋‹ค ๊ทธ๋•Œ๊ทธ๋•Œ ์›ํ•˜๋Š” ํ–‰๋™๊ณผ ๋น„์Šทํ•œ ์ฝ”๋“œ๋ฅผ ์ฐพ์•„์„œใ…Žใ…Ž ํ‰๋‚ด๋‚ด๋Š” ์ค‘์ž…๋‹ˆ๋‹ค.

์œ ํ† ํ”ผ์•ˆ ๋ณดํŒ…์ด 2๋ผ์šด๋“œ(์ฒ˜์Œ์—” ์ž„๋ฐ•ํ•˜๊ธดํ–ˆ๋Š”๋ฐ)๋‚˜ ๊ฑด๋„ˆ๋›ฐ์–ด์„œ ๋””์Šค์ฝ”๋“œ๊นŒ์ง€ ์ฐพ์•„๊ฐ€๋ณด๋‹ˆ ์ด๊ฒŒ ์›Œ๋‚™ ์š”์ƒˆ ๋ณดํŒ…๊ฐ€์น˜๊ฐ€ ์ค„์–ด์„œ ์–˜๋„ค๋“ค๋„ ์• ๋ฅผ ๋จน๊ณ  ์žˆ๋”๋ผ๊ณ ์š”. ์‹œ๊ฐ„์ˆœ์ด ์•„๋‹Œ ์ ์ˆ˜์ˆœ์œผ๋กœ ๋ณดํŒ…ํ•œ๋‹ค๊ณ  ๋‚ฎ์€๊ฒฝ์šฐ ์ง€๊ธˆ ๋ชป๋ฐ›๋Š” ์ƒํ™ฉ๋„ ์ƒ๊ธฐ๋Š” ๊ฒƒ ๊ฐ™๋”๋ผ๊ณ ์š”.

์ฐธ esteem surfer๊ฐ€ ์ •๋ง ์‹ ๋Œ€๋ฅ™์ผ ๊ฒ๋‹ˆ๋‹คใ…Žใ…Ž ๋ฒ„๊ทธ์™€ ๊ฐœ์„ ํ• ๊ฒŒ ํ•œ๋‘๊ฐœ๊ฐ€ ์•„๋‹ˆ๋ผ์„œ. ๊ทผ๋ฐ ์ฝ”๋“œ๊ฐ€ ใ… ใ…  ๋‚œ์žกํ•ด์š” ์ œ๊ฐ€ ๋ณด๊ธฐ์—”. ๊ทธ๋ž˜์„œ ์‚ฌ์‹ค ์˜ค๋Š˜ ํ•œ๊ฑฐ๊นŒ์ง€ ํ•˜๊ณ  ์•ˆํ• ์ง€๋„. ๋น„์ง€๊ฐ€ ๊ทธ๋ž˜๋„ ์ตœ์ ํ™”๋Š” ์•ˆ๋œ๋ถ€๋ถ„์ด ์žˆ์–ด๋„ ๊น”๋”์€ ํ•œ๋“ฏ. ๊ตฟ์นด๋ฅด๋งˆ๊ฐ€ ์œ ํ† ํ”ผ์•ˆ๊ธ€์“ฐ๊ณ  ์ฃผ์†Œ ๋‚จ๊ธฐ๋ผ๊ณ  ํ•ด์„œ ๋‚จ๊ฒผ๋”๋‹ˆ ์ž๊ธฐ๋„ค ๊ณ„์ •์œผ๋กœ ์ œ๋ฒ• ๋งŽ์ด ๋ณดํŒ…ํ•ด์ฃผ๊ณ  ๊ฐ”๋„ค์š”. https://steemit.com/utopian-io/@blockchainstudio/esteem-surfer-2-0-5-comments-tab-and-delegation-detail-don-t-work-etc ์œ ํ† ํ”ผ์•ˆ ๋ณดํŒ…์˜จ์ค„ใ…Žใ…Ž ๋ฒ„๊ทธ๋ฆฌํฌํŠธ๋ผ ์ข€ ๋ฏผ๋งํ•ด์„œ ์ด์•ผ๊ธฐ ์•ˆํ•˜๊ณ  ์žˆ๋‹ค๊ฐ€ ์ž˜ํ–ˆ๋‹ค ์‹ถ๋”๋ผ๊ณ ์š”. dev๋Š” ์˜ค๋Š˜ ํ•œ๊ฒƒ๊นŒ์ง€ ๋จธ์ง€๋˜๋ฉด ๋ชจ์•„์„œ ๋‚ด๋ ค๊ณ ์š”.
properties (22)
authorblockchainstudio
permlinkre-anpigon-re-blockchainstudio-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190203t020150714z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["blockchainstudio"],"links":["https://steemit.com/utopian-io/@blockchainstudio/esteem-surfer-2-0-5-comments-tab-and-delegation-detail-don-t-work-etc"],"image":[]}
created2019-02-03 01:59:18
last_update2019-02-03 01:59:18
depth3
children1
last_payout2019-02-10 01:59:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length749
author_reputation178,988,499,015,921
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,322,744
net_rshares0
@gomdory ·
๊ณฐ๋Œ์ด๊ฐ€ @anpigon๋‹˜์˜ ์†Œ์ค‘ํ•œ ๋Œ“๊ธ€์— $0.017์„ ๋ณดํŒ…ํ•ด์„œ $0.006์„ ์‚ด๋ ค๋“œ๋ฆฌ๊ณ  ๊ฐ€์š”. ๊ณฐ๋Œ์ด๊ฐ€ ์ง€๊ธˆ๊นŒ์ง€ ์ด 2940๋ฒˆ $35.908์„ ๋ณดํŒ…ํ•ด์„œ $36.395์„ ๊ตฌํ–ˆ์Šต๋‹ˆ๋‹ค.  @gomdory ๊ณฐ๋„๋คผ~
properties (22)
authorgomdory
permlinkre-re-blockchainstudio-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190203t014231246z-20190209t111839
categoryutopian-io
json_metadata""
created2019-02-09 11:18:42
last_update2019-02-09 11:18:42
depth3
children0
last_payout2019-02-16 11:18:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation38,104,394,235,725
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,614,339
net_rshares0
@bukio ·
์งฑ์งฑ๋งจ ํ˜ธ์ถœ์— ์‘๋‹ตํ•˜์—ฌ ๋ณดํŒ…ํ•˜์˜€์Šต๋‹ˆ๋‹ค. 
properties (22)
authorbukio
permlinkre-bukio-jjangjjangman-1549033428082
categoryutopian-io
json_metadata"{"tags":["bukio", "jjangjjangman"],"app":"steemer/1.0"}"
created2019-02-01 15:03:48
last_update2019-02-01 15:03:48
depth1
children0
last_payout2019-02-08 15:03:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation11,545,563,591,097
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,259,738
net_rshares0
@gomdory ·
![](https://ipfs.busy.org/ipfs/QmSpSf3UTPCZUwCEfi1sWKKcUXWKH3SnpEaYaqRuWu7omz)
properties (22)
authorgomdory
permlinkre-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190201t150219
categoryutopian-io
json_metadata""
created2019-02-01 15:02:21
last_update2019-02-01 15:02:21
depth1
children0
last_payout2019-02-08 15:02:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation38,104,394,235,725
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,259,682
net_rshares0
@justyy ·
$11.57
Thank you for your contribution!

1. Maybe you can also show power down route (if applicable) - and enable a cancel power down option?
2. Tests would be nice to cover the functions e.g. `calculatePendingWithdrawalSP`
3. Thanks for sharing that $0.02 payout information - which you might replace the 0.02 with `STEEM_MIN_PAYOUT_SBD` as you mentioned in the comment.

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/2-3-2-2-2-1-1-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorjustyy
permlinkre-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190201t155404703z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-3-2-2-2-1-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-02-01 15:54:06
last_update2019-02-01 15:54:06
depth1
children2
last_payout2019-02-08 15:54:06
cashout_time1969-12-31 23:59:59
total_payout_value8.751 HBD
curator_payout_value2.818 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length814
author_reputation280,616,224,641,976
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,261,730
net_rshares23,884,970,461,008
author_curate_reward""
vote details (23)
@blockchainstudio · (edited)
Hi @justyy, thanks a lot for your review and very detailed suggestions.
Re 1: Of course, I actually thought about this (especially for hacking prevention, but it isn't that simple. I mean without changing the original code too much. Since I'm an external contributor, so I've decided not to change too much the code. But I guess now I got some trust from Busy team :) so maybe more substantial change will come :)
Re 2: You're right, at that time, I forgot to add the test code.
Re 3: Again you're right. The reason why I just hardcoded it was the original code was with such magic numbers in some cases (of course when it's very simple and only used there once like in this case), so I followed their practice. As you can see, the entire class and file is quite short. But in general I totally agree with you. This is actually the difficulty of contributing to the already established open-source project as external contributor :) sometimes I don't agree with the style, but I think I should follow their style unless the change is absolutely needed.

Many thanks again!
properties (22)
authorblockchainstudio
permlinkre-justyy-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190201t161128239z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["justyy"],"links":["/@justyy"],"image":[]}
created2019-02-01 16:09:00
last_update2019-02-01 16:11:09
depth2
children0
last_payout2019-02-08 16:09:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,072
author_reputation178,988,499,015,921
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,262,331
net_rshares0
@utopian-io ·
Thank you for your review, @justyy! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190201t155404703z-20190203t200241z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-02-03 20:02:42
last_update2019-02-03 20:02:42
depth2
children0
last_payout2019-02-10 20:02:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation152,955,367,999,756
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,354,384
net_rshares0
@ravenkim ·
$0.02
์Œ... ๋ฒˆ์—ญ์ด ํ•„์š”ํ•ด ๋ณด์ด๋„ค์š”^^
๐Ÿ‘  ,
properties (23)
authorravenkim
permlinkre-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190202t123420079z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-02 12:34:27
last_update2019-02-02 12:34:27
depth1
children2
last_payout2019-02-09 12:34:27
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation107,302,486,367,072
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,297,412
net_rshares48,356,010,198
author_curate_reward""
vote details (2)
@blockchainstudio · (edited)
์˜์–ด๊ธ€๊นŒ์ง€ ์ฐพ์•„์ฃผ์…”์„œ ๊ฐ์‚ฌํ•ฉ๋‹ˆ๋‹ค^^ ์‚ฌ์‹ค ๋งค๋ฒˆ ์˜์–ด๋กœ ๋œ ๊ธ€์€ ํ•œ๊ธ€ ์š”์•ฝ์„ ๋Œ“๊ธ€์— ๋‹ฌ๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค. ์ด ๊ธ€์€ ํŠนํžˆ ์ž์„ธํžˆ ๋‹ฌ์•˜๋„ค์š”. ๊ถ๊ธˆํ•˜์‹œ๋ฉด ๋ณด์„ธ์š”^^ ๋‹ค์Œ์—” ์…€๋ด‡์„ ์ข€ ํ•ด์„œ ์œ„๋กœ ์˜ฌ๋ ค๋†”์•ผ๊ฒ ์Šต๋‹ˆ๋‹ค. ๊ทธ๋Ÿฐ๋ฐ ์›Œ๋‚™ ์œ ํ† ํ”ผ์•ˆ ๋ฆฌ๋ทฐ์–ด ๋Œ“๊ธ€์ž์ฒด๊ฐ€ ๋ณดํŒ…์ด ๋†’๊ณ  ๋Œ“๊ธ€๊ฐœ์ˆ˜๊ฐ€ ๋งŽ์ง€ ์•Š์•„ ๊ทธ๋ƒฅ ๋‘๋Š” ํŽธ์ž…๋‹ˆ๋‹ค. ๋ณดํŒ…ํŒŒ์›Œ๋„ ์‹ ๊ธฐํ•˜๊ฒŒ ๋Š˜ ๋ถ€์กฑํ•˜๊ณ ใ…Žใ…Ž ๊ณฐ๋Œ์ด, ์šธ๋ฃฉ๋ถˆ๋ฃฉ ๋“ฑ ๋ณดํŒ…ํŒŒ์›Œ ๋‚จ์„๋•Œ๋‚˜ ์…€๋ด‡ํ•˜๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค^^ ๋งŽ์€ ๋ถ„๋“ค์ด ๊ถ๊ธˆํ•ดํ•˜์‹ค๊ฒƒ ๊ฐ™์€ ์˜์–ด๊ธ€์€ ํ•œ๊ธ€ํŒ์„ ๋”ฐ๋กœ ์ ๊ธฐ๋„ ํ–ˆ๋Š”๋ฐ ์š”์ƒŒ ๊ทธ๋Ÿด๋งŒํ•œ ๊ธ€์ด ๋”ฑํžˆ ์—†๊ธฐ๋„ ํ•˜๊ณ  ์œ ํ† ํ”ผ์•ˆ ๊ธ€์ ๊ธฐ์—๋„ ํฌ์ŠคํŒ…์ˆ˜๊ฐ€ ๋งŽ์•„์„œใ… ใ… 
properties (22)
authorblockchainstudio
permlinkre-ravenkim-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190202t125252519z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2019-02-02 12:52:54
last_update2019-02-02 12:55:42
depth2
children0
last_payout2019-02-09 12:52:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length299
author_reputation178,988,499,015,921
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,297,998
net_rshares0
@gomdory ·
๊ณฐ๋Œ์ด๊ฐ€ @ravenkim๋‹˜์˜ ์†Œ์ค‘ํ•œ ๋Œ“๊ธ€์— $0.018์„ ๋ณดํŒ…ํ•ด์„œ $0.005์„ ์‚ด๋ ค๋“œ๋ฆฌ๊ณ  ๊ฐ€์š”. ๊ณฐ๋Œ์ด๊ฐ€ ์ง€๊ธˆ๊นŒ์ง€ ์ด 2933๋ฒˆ $35.832์„ ๋ณดํŒ…ํ•ด์„œ $36.310์„ ๊ตฌํ–ˆ์Šต๋‹ˆ๋‹ค.  @gomdory ๊ณฐ๋„๋คผ~
properties (22)
authorgomdory
permlinkre-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190202t123420079z-20190208t221033
categoryutopian-io
json_metadata""
created2019-02-08 22:10:36
last_update2019-02-08 22:10:36
depth2
children0
last_payout2019-02-15 22:10:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation38,104,394,235,725
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,592,002
net_rshares0
@steem-ua ·
#### Hi @blockchainstudio!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190203t111608z
categoryutopian-io
json_metadata"{"app": "beem/0.20.18"}"
created2019-02-03 11:16:09
last_update2019-02-03 11:16:09
depth1
children0
last_payout2019-02-10 11:16:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length295
author_reputation23,214,230,978,060
root_title"Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,336,705
net_rshares0