diff --git a/app/scripts/metamask-controller.js b/app/scripts/metamask-controller.js index be23c5a69..6fe276228 100644 --- a/app/scripts/metamask-controller.js +++ b/app/scripts/metamask-controller.js @@ -267,7 +267,14 @@ export default class MetamaskController extends EventEmitter { }) this.networkController.on('networkDidChange', () => { - this.setCurrentCurrency(this.currencyRateController.state.currentCurrency, function () {}) + this.setCurrentCurrency( + this.currencyRateController.state.currentCurrency, + (error) => { + if (error) { + throw error + } + } + ) }) this.networkController.lookupNetwork()