Skip to content

Commit

Permalink
fix filling burn address bug
Browse files Browse the repository at this point in the history
  • Loading branch information
imyugioh committed May 25, 2021
1 parent 1d86c37 commit f3f824d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.2.0"
"version": "1.2.1"
}
2 changes: 1 addition & 1 deletion src/services/utils/ens.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ export const getAddressType = (addrOrName) => {
};

export const isNullAddress = (addr) => {
return addr === "0x0000000000000000000000000000000000000000";
return oneToHexAddress(addr) === "0x0000000000000000000000000000000000000000";
};

0 comments on commit f3f824d

Please sign in to comment.