Skip to content

Commit

Permalink
last version of vue2
Browse files Browse the repository at this point in the history
  • Loading branch information
ety001 committed Dec 18, 2023
1 parent 9f56de4 commit 8c9f5ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/BlockReward.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ export default {
// Percent SBD
const currentSbdSupply = dgp.current_sbd_supply.split(' ');
const tmpSbdSupply = currentSbdSupply[0] / currentMedianPrice;
const percentSbd = (tmpSbdSupply + virtualSupply[0] / 2) / virtualSupply[0];
const tmp = (tmpSbdSupply + virtualSupply[0] / 2 / STEEM_100_PERCENT);
const percentSbd = tmp / virtualSupply[0];
// Display the data
this.data = [
Expand Down

0 comments on commit 8c9f5ec

Please sign in to comment.