Skip to content

Commit

Permalink
Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed May 31, 2018
1 parent e85cbf1 commit 96581e2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Error from './template.error'
import Loading from './template.loading'
import Success from './template.success'

class BtcBalance extends React.PureComponent {
class BtcWatchOnlyBalance extends React.PureComponent {
constructor (props) {
super(props)
this.handleRefresh = this.handleRefresh.bind(this)
Expand Down Expand Up @@ -38,7 +38,7 @@ class BtcBalance extends React.PureComponent {
}
}

BtcBalance.propTypes = {
BtcWatchOnlyBalance.propTypes = {
context: PropTypes.string.isRequired
}

Expand All @@ -50,4 +50,4 @@ const mapDispatchToProps = (dispatch) => ({
actions: bindActionCreators(actions.core.data.bitcoin, dispatch)
})

export default connect(mapStateToProps, mapDispatchToProps)(BtcBalance)
export default connect(mapStateToProps, mapDispatchToProps)(BtcWatchOnlyBalance)

0 comments on commit 96581e2

Please sign in to comment.