Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Force build changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr committed Dec 10, 2016
1 parent c706879 commit 0fd9c14
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions js/src/views/Signer/signer.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ export default class Signer extends Component {
render () {
return (
<div>
<Actionbar
title='Trusted Signer' />
<Actionbar title='Trusted Signer' />
<RequestsPage />
</div>
);
Expand Down
12 changes: 6 additions & 6 deletions js/src/views/Signer/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ export default class Store {
}
}

@action unsubscribe () {
if (this._timeoutId) {
clearTimeout(this._timeoutId);
}
}

@action setBalance = (address, balance) => {
this.setBalances({ [address]: balance });
}
Expand All @@ -50,6 +44,12 @@ export default class Store {
}
}

@action unsubscribe () {
if (this._timeoutId) {
clearTimeout(this._timeoutId);
}
}

fetchBalance (address) {
this._api.eth
.getBalance(address)
Expand Down

0 comments on commit 0fd9c14

Please sign in to comment.