From bc4efa18072997fea7f20051171f11a36cf006c8 Mon Sep 17 00:00:00 2001 From: kumavis Date: Fri, 3 Feb 2017 16:07:58 -0800 Subject: [PATCH] eth-store - update store state after manipulating --- app/scripts/lib/eth-store.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/scripts/lib/eth-store.js b/app/scripts/lib/eth-store.js index 773c81d1b..8812a507b 100644 --- a/app/scripts/lib/eth-store.js +++ b/app/scripts/lib/eth-store.js @@ -92,6 +92,7 @@ class EthereumStore extends ObservableStore { // only populate if the entry is still present if (accounts[address]) { accounts[address] = result + this.updateState({ accounts }) } cb(null, result) }) @@ -111,6 +112,7 @@ class EthereumStore extends ObservableStore { // only populate if the entry is still present if (transactions[txHash]) { transactions[txHash] = result + this.updateState({ transactions }) } cb(null, result) })