From b233e7e37c56852080bdc7b1843eb68ba96b5382 Mon Sep 17 00:00:00 2001 From: kumavis Date: Thu, 2 Feb 2017 22:32:00 -0800 Subject: eth-store - cbs default to noop --- app/scripts/lib/eth-store.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/scripts/lib/eth-store.js b/app/scripts/lib/eth-store.js index 64a3c6b59..96b4a60f2 100644 --- a/app/scripts/lib/eth-store.js +++ b/app/scripts/lib/eth-store.js @@ -76,13 +76,13 @@ class EthereumStore extends ObservableStore { }) } - _updateAccounts (cb) { + _updateAccounts (cb = noop) { const accounts = this.getState().accounts const addresses = Object.keys(accounts) async.each(addresses, this._updateAccount.bind(this), cb) } - _updateAccount (address, cb) { + _updateAccount (address, cb = noop) { const accounts = this.getState().accounts this._getAccount(address, (err, result) => { if (err) return cb(err) @@ -95,13 +95,13 @@ class EthereumStore extends ObservableStore { }) } - _updateTransactions (block, cb) { + _updateTransactions (block, cb = noop) { const transactions = this.getState().transactions const txHashes = Object.keys(transactions) async.each(txHashes, this._updateTransaction.bind(this, block), cb) } - _updateTransaction (block, txHash, cb) { + _updateTransaction (block, txHash, cb = noop) { // would use the block here to determine how many confirmations the tx has const transactions = this.getState().transactions this._query.getTransaction(txHash, (err, result) => { @@ -114,7 +114,7 @@ class EthereumStore extends ObservableStore { }) } - _getAccount (address, cb) { + _getAccount (address, cb = noop) { const query = this._query async.parallel({ balance: query.getBalance.bind(query, address), -- cgit