From bea207da7d06cd836692c01aeb76caf4de09460c Mon Sep 17 00:00:00 2001 From: Esteban Mino Date: Mon, 13 Jan 2020 15:05:54 -0300 Subject: [PATCH] hex --- app/core/InpageBridge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/InpageBridge.js b/app/core/InpageBridge.js index 126048221ec..29ec81b797f 100644 --- a/app/core/InpageBridge.js +++ b/app/core/InpageBridge.js @@ -44,7 +44,7 @@ class InpageBridge { this.selectedAddress = this._selectedAddress; this.networkVersion = this._network; if (!isNaN(this._network)) { - this.chainId = 'Ox' + parseInt(this._network, 10).toString(16); + this.chainId = '0x' + parseInt(this._network, 10).toString(16); } oldAddress !== undefined &&