diff options
author | kumavis <aaron@kumavis.me> | 2017-01-12 14:47:56 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2017-01-12 14:47:56 +0800 |
commit | 3bc996878b467e1fa5fd63656bd465377daa137d (patch) | |
tree | 9c1661af778b58cd6d83c7d5fb5727f7a61b6dd9 /app/scripts/lib/observable/remote.js | |
parent | 2019c02fc0fc33d4bd98416654370250d7aa0ca6 (diff) | |
download | dexon-wallet-3bc996878b467e1fa5fd63656bd465377daa137d.tar.gz dexon-wallet-3bc996878b467e1fa5fd63656bd465377daa137d.tar.zst dexon-wallet-3bc996878b467e1fa5fd63656bd465377daa137d.zip |
background - move pojo migrator to outside of metamask controller
Diffstat (limited to 'app/scripts/lib/observable/remote.js')
-rw-r--r-- | app/scripts/lib/observable/remote.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/lib/observable/remote.js b/app/scripts/lib/observable/remote.js index b5a3254a..603f6f0b 100644 --- a/app/scripts/lib/observable/remote.js +++ b/app/scripts/lib/observable/remote.js @@ -12,7 +12,7 @@ class RemoteStore extends ObservableStore { constructor (initState, opts) { super(initState) - this.opts = opts || {} + this._opts = opts || {} this._remote = null } |