Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
legobeat committed Oct 13, 2023
1 parent 909dc0a commit ace44d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/controller-utils/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ export function toChecksumHexAddress(address: string) {
// closely mimics the original behavior.
return hexPrefixed;
}
console.log('FOOO', {hexPrefixed});

Check failure on line 264 in packages/controller-utils/src/util.ts

View workflow job for this annotation

GitHub Actions / Lint, build, and test / Lint (20.x)

Replace `hexPrefixed` with `·hexPrefixed·`
return toChecksumAddress(hexPrefixed);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/gas-fee-controller/src/gas-util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const makeClientIdHeader = (clientId: string) => ({ 'X-Client-Id': clientId });
*/
export function normalizeGWEIDecimalNumbers(n: string | number) {
const numberAsWEIHex = gweiDecToWeiBigInt(n).toString(16);
const numberAsGWEI = weiHexToGweiDec(numberAsWEIHex).toString(10);
const numberAsGWEI = weiHexToGweiDec(numberAsWEIHex);
return numberAsGWEI;
}

Expand Down

0 comments on commit ace44d9

Please sign in to comment.