Skip to content

Commit

Permalink
Fabo/1207 fix incorrect voting power (#1215)
Browse files Browse the repository at this point in the history
* added native menu for versions

* remove about from view

* changelog

* fixed tests

* linted and simplified

* remove more about code

* show correct voting power

* changelog
  • Loading branch information
faboweb authored and fedekunze committed Aug 30, 2018
1 parent 6eb10e8 commit 07fbbca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Fixed

* use correct set of seed nodes @ƒaboweb
* validator page showed incorrect voting power @faboweb

## [0.10.1] - 2018-08-29

Expand Down
2 changes: 1 addition & 1 deletion app/src/renderer/components/staking/PageValidator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ tm-page(:title='validatorTitle(this.validator)')
tm-list-item(dt="Pub Key" :dd="validator.pub_key")

tm-part(title='Validator Stake' v-if="!validator.revoked")
tm-list-item(dt="Voting Power" :dd="pretty(validator.tokens) + ' ' + this.config.bondingDenom")
tm-list-item(dt="Voting Power" :dd="pretty(validator.voting_power) + ' ' + this.config.bondingDenom")
tm-list-item(dt="Self Bonded" :dd="pretty(selfBond) + ' ' + this.config.bondingDenom")
tm-list-item(dt="Bond Height" :dd="`Block ${validator.bond_height}`")

Expand Down

0 comments on commit 07fbbca

Please sign in to comment.