Skip to content

Commit

Permalink
Fix reveal state bug; release v0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mslipper committed Mar 17, 2020
1 parent bd6ec91 commit ecd9f92
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.8] - 2020-03-17
### Fixed
- Fixed a crash when names transitioned from the bidding to revealing state

## [0.2.7] - 2020-03-16
### Added
- Added an additional warning to the reset screen to highlight how bids need to be re-imported after deleting a wallet
Expand Down
4 changes: 2 additions & 2 deletions app/pages/Auction/BidActionPanel/Reveal.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ class Reveal extends Component {

return (
<div className="domains__bid-now__info__warning">
You will lose {displayBalance(totalMasks, true)} if you don't reveal before
<Blocktime height={this.props.domain.stats.revealPeriodEnd} format="ll" />
You will lose {displayBalance(totalMasks, true)} if you don't reveal before{' '}
<Blocktime height={this.props.domain.info.stats.revealPeriodEnd} format="ll" />
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bob-wallet",
"productName": "Bob",
"author": "Kyokan Group, Inc.",
"version": "0.2.7",
"version": "0.2.8",
"description": "A Handshake wallet and auction manager.",
"scripts": {
"build": "./scripts/package.sh",
Expand Down

0 comments on commit ecd9f92

Please sign in to comment.