Skip to content

Commit

Permalink
bugfix: inpage bridge chainid (#1275)
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanmino authored Jan 13, 2020
1 parent 31b287d commit 95fbd06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/core/InpageBridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&
Expand Down

0 comments on commit 95fbd06

Please sign in to comment.